before claude

This commit is contained in:
Gilles Soulier
2026-01-18 06:26:17 +01:00
parent dc19315e5d
commit 740c3d7516
60 changed files with 3815 additions and 354 deletions
+30
View File
@@ -33,6 +33,19 @@ services:
depends_on:
- postgres
- redis
worker:
build: .
command: python -m pricewatch.app.cli.main worker
env_file:
- .env
environment:
PW_DB_HOST: postgres
PW_REDIS_HOST: redis
TZ: Europe/Paris
depends_on:
- postgres
- redis
frontend:
build: ./webui
@@ -75,6 +88,23 @@ services:
depends_on:
- postgres
pgadmin:
image: dpage/pgadmin4:latest
ports:
- "8072:80"
environment:
TZ: Europe/Paris
PGADMIN_DEFAULT_EMAIL: admin@pricewatch.dev
PGADMIN_DEFAULT_PASSWORD: pricewatch
PGADMIN_CONFIG_SERVER_MODE: "False"
PGADMIN_CONFIG_MASTER_PASSWORD_REQUIRED: "False"
volumes:
- pricewatch_pgadmin:/var/lib/pgadmin
- ./pgadmin-servers.json:/pgadmin4/servers.json:ro
depends_on:
- postgres
volumes:
pricewatch_pgdata:
pricewatch_redisdata:
pricewatch_pgadmin: