wizarr/.dockerignore

56 lines
745 B
Text
Raw Normal View History

2025-05-21 16:23:50 +01:00
# Development files
2025-05-21 16:23:50 +01:00
.venv
2022-09-13 12:39:34 +01:00
venv/
__pycache__/
*.pyc
*.pyo
*.pyd
.Python
# Environment files
2022-09-12 18:39:32 +01:00
.env
.env.*
# OS files
2022-09-13 12:40:26 +01:00
.DS_Store
Thumbs.db
# Git and development tools
2023-02-14 04:26:22 +00:00
.git
2023-03-02 21:01:18 +00:00
.github
.gitignore
2023-03-17 17:33:34 +01:00
.idea
.vscode
2023-03-17 17:33:34 +01:00
.buildHelper.txt
# Test and development data
test-data/
tests/
.pytest_cache
.coverage
htmlcov/
2023-03-17 17:33:34 +01:00
# Documentation and helpers
2023-03-17 17:33:34 +01:00
screenshots/
docs/
2025-05-21 16:23:50 +01:00
helpers/
README.md
unraid.xml
# Node modules (handled separately in multi-stage build)
node_modules/
2025-08-14 23:52:52 +02:00
# Built assets (external dependencies will be built in container)
app/static/css/main.css
app/static/js/sortable.min.js
app/static/js/tiny-mde.min.js
app/static/css/tiny-mde.min.css
2025-09-10 12:41:08 +02:00
# Lock files generated by CI before container build
# Hidden files (except those we need)
.*
!.dockerignore
2025-05-21 16:23:50 +01:00