mirror of
https://github.com/diegosouzapw/OmniRoute.git
synced 2026-08-05 23:02:10 +03:00
`.dockerignore` excluded everything under `docs/` except `openapi.yaml`, which broke the in-product Docs viewer at `/docs/*` with "ENOENT: no such file or directory, open '/app/docs/SETUP_GUIDE.md'" for every help page. The previous block-list was meant to keep the image small but it hid the ~5 MB English markdown tree that the viewer actually reads. Replace the block with a targeted exclude of the heavy assets that account for ~45 MB of the original ~50 MB: - docs/i18n/** (translated copies — viewer falls back to English) - docs/screenshots/** - docs/diagrams/exported/** plus raster/SVG variants Note: Go filepath.Match (Docker's matcher) treats `*` as not crossing `/`, so the existing `*.md` rule still excludes only root-level markdown — nested `docs/**/*.md` is implicitly kept without a re-include rule that would have brought i18n back. Added a regression test that parses .dockerignore and asserts the critical English docs survive the filter while the heavy paths still do not.
127 lines
2.1 KiB
Plaintext
127 lines
2.1 KiB
Plaintext
# VCS
|
|
.git
|
|
**/.git
|
|
|
|
# Editor
|
|
.vscode
|
|
**/.vscode
|
|
|
|
# Dependencies and build output
|
|
node_modules
|
|
.next
|
|
out
|
|
build
|
|
dist
|
|
coverage
|
|
|
|
# Runtime data and logs
|
|
data
|
|
logs
|
|
|
|
# Local env files (inject at runtime via --env-file or -e)
|
|
.env
|
|
.env.local
|
|
.env.development.local
|
|
.env.test.local
|
|
.env.production.local
|
|
|
|
# Debug logs
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
.pnpm-debug.log*
|
|
|
|
# Test suites
|
|
tests
|
|
test-results
|
|
playwright-report
|
|
blob-report
|
|
|
|
# Documentation
|
|
# Issue #2348: The Dashboard Docs viewer reads markdown from `/app/docs` at
|
|
# runtime. The previous `docs/*` block hid every file except openapi.yaml,
|
|
# so the in-product help screen failed with ENOENT for every page.
|
|
# We now keep the English markdown tree but drop the bulky assets
|
|
# (translations, screenshots, raster diagrams) that account for ~45 MB
|
|
# of the ~50 MB docs directory. The Docs viewer reads the default-locale
|
|
# (English) sources at runtime, so translations are not required in the
|
|
# container image.
|
|
docs/i18n/**
|
|
docs/screenshots/**
|
|
docs/diagrams/exported/**
|
|
docs/diagrams/**/*.png
|
|
docs/diagrams/**/*.jpg
|
|
docs/diagrams/**/*.jpeg
|
|
docs/diagrams/**/*.gif
|
|
docs/diagrams/**/*.webp
|
|
docs/diagrams/**/*.svg
|
|
# Note: `*.md` matches the root only (Go filepath.Match does not cross /),
|
|
# so nested docs/**/*.md is implicitly kept without a re-include rule.
|
|
*.md
|
|
!README.md
|
|
|
|
# Electron (separate build)
|
|
electron
|
|
|
|
# VS Code extension (separate project)
|
|
vscode-extension
|
|
|
|
# Build artifacts
|
|
*.tgz
|
|
*.AppImage
|
|
*.deb
|
|
*.rpm
|
|
|
|
# Package manager lock (bun)
|
|
bun.lock
|
|
|
|
# Agent config
|
|
.agents
|
|
.gemini
|
|
|
|
# Misc
|
|
llm.txt
|
|
images
|
|
clipr
|
|
omnirouteCloud
|
|
omnirouteSite
|
|
|
|
# Temporary/Scratch Folders
|
|
_*
|
|
|
|
# CI/CD and Version Control (that are not actual code)
|
|
.github
|
|
.husky
|
|
.omc
|
|
|
|
# Test Configs and Reports
|
|
playwright.config.ts
|
|
vitest*.ts
|
|
audit-report.json
|
|
sonar-project.properties
|
|
|
|
# Deployment Configs
|
|
docker-compose*.yml
|
|
fly.toml
|
|
|
|
# Consistent with .gitignore
|
|
.DS_Store
|
|
.idea/
|
|
.config/
|
|
.data/
|
|
.omnivscodeagent/
|
|
*.sqlite-*
|
|
*.tsbuildinfo
|
|
next-env.d.ts
|
|
security-analysis/
|
|
.analysis/
|
|
antigravity-manager-analysis/
|
|
.sisyphus/
|
|
.plans/
|
|
app.__qa_backup/
|
|
.app-build-backup-*/
|
|
.gitnexus
|
|
.worktrees
|
|
.next-playwright/
|
|
cloud/
|