- docker-compose.yml: replace named volumes with ./postgres/data and ./redis/data bind mounts - .gitignore: exclude postgres/ and redis/ data directories - DEPLOYING.md: update clone URL to public PocketVeto repo - UPDATING.md: fix paths (~/pocketveto), clone URL, webhook IDs Authored by: Jack Levy
22 lines
248 B
Plaintext
22 lines
248 B
Plaintext
.env
|
|
__pycache__/
|
|
*.pyc
|
|
*.pyo
|
|
.pytest_cache/
|
|
.mypy_cache/
|
|
dist/
|
|
build/
|
|
*.egg-info/
|
|
.venv/
|
|
venv/
|
|
|
|
# Next.js
|
|
frontend/.next/
|
|
frontend/node_modules/
|
|
frontend/out/
|
|
|
|
# Docker — bind-mount data directories (created on first run)
|
|
postgres/
|
|
redis/
|
|
*.log
|