mirror of
https://github.com/pewdiepie-archdaemon/odysseus.git
synced 2026-06-15 09:15:29 -04:00
2e99825a29
Align git and Docker ignore patterns for secrets.env artifacts while preserving the intended encrypted-file workflow.
49 lines
713 B
Plaintext
49 lines
713 B
Plaintext
venv/
|
|
.venv/
|
|
node_modules/
|
|
services/node_modules/
|
|
__pycache__/
|
|
*.pyc
|
|
*.pyo
|
|
*.egg-info/
|
|
dist/
|
|
build/
|
|
.env
|
|
.env.bak.*
|
|
# Secrets: keep plaintext and every transient secrets.env variant out of
|
|
# the build context. If an encrypted secrets.env is used, it is mounted
|
|
# at runtime — never baked into the image. Mirrored in .gitignore.
|
|
secrets.env
|
|
secrets.env.*
|
|
!secrets.env.example
|
|
/data/
|
|
/logs/
|
|
.git/
|
|
.claude/
|
|
.playwright-mcp/
|
|
.pytest_cache/
|
|
.vscode/
|
|
.idea/
|
|
dev-docs/
|
|
docs/
|
|
*.md
|
|
*.db
|
|
*.sqlite
|
|
*.sqlite3
|
|
/reports/
|
|
/research_data/
|
|
tasks/
|
|
_scratch/
|
|
compound.config.json
|
|
search_analytics.json
|
|
**/search_analytics.json
|
|
tests/
|
|
api/
|
|
*.log
|
|
*.error.log
|
|
chart.png
|
|
timetree*.png
|
|
*_signin_page.png
|
|
*_calendar_view.png
|
|
.gitignore
|