mirror of
https://code.lenaisten.de/Lenaisten/advent22.git
synced 2026-02-25 10:30:16 +00:00
- main Dockerfile readability - use "granian" in production mode - simpler "production.py" replacing "mini-tiangolo" (gunicorn+unicorn)
33 lines
419 B
Text
33 lines
419 B
Text
# commonly found
|
|
**/.git
|
|
**/.idea
|
|
**/.DS_Store
|
|
**/.vscode
|
|
**/.devcontainer
|
|
|
|
**/dist
|
|
**/.gitignore
|
|
**/Dockerfile
|
|
**/.dockerignore
|
|
|
|
# found in python and JS dirs
|
|
**/__pycache__/
|
|
**/node_modules/
|
|
**/.pytest_cache/
|
|
**/.ruff_cache/
|
|
**/.uv_cache/
|
|
**/.venv/
|
|
|
|
# env files
|
|
**/.env
|
|
**/.env.local
|
|
**/.env.*.local
|
|
|
|
# log files
|
|
**/npm-debug.log*
|
|
**/yarn-debug.log*
|
|
**/yarn-error.log*
|
|
**/pnpm-debug.log*
|
|
|
|
# custom files
|
|
api/api.conf
|