rapid interations of server side app and firefox extension

This commit is contained in:
Bryan Van Deusen
2026-01-24 22:52:51 -05:00
commit b9b8048a2d
81 changed files with 9675 additions and 0 deletions
+35
View File
@@ -0,0 +1,35 @@
# Development overrides - use with: docker-compose -f docker-compose.yml -f docker-compose.dev.yml up
services:
app:
build:
context: ./backend
dockerfile: Dockerfile.dev
volumes:
- ./backend/app:/app/app:ro
- downloads:/data/downloads
- config:/data/config
- cookies:/data/cookies
environment:
- DEBUG=true
- LOG_LEVEL=DEBUG
celery:
build:
context: ./backend
dockerfile: Dockerfile.dev
volumes:
- ./backend/app:/app/app:ro
- downloads:/data/downloads
- config:/data/config
- cookies:/data/cookies
environment:
- DEBUG=true
- LOG_LEVEL=DEBUG
db:
ports:
- "5432:5432"
redis:
ports:
- "6379:6379"