feat: mise en place de la messagerie [#17]

This commit is contained in:
Luc SORIGNET
2025-05-26 13:24:42 +02:00
parent e2df29d851
commit d37145b73e
64 changed files with 13113 additions and 853 deletions

View File

@ -1,6 +1,6 @@
services:
redis:
image: 'redis:latest'
image: "redis:latest"
ports:
- 6379:6379
@ -8,7 +8,7 @@ services:
- TZ=Europe/Paris
database:
image: 'postgres:latest'
image: "postgres:latest"
ports:
- 5432:5432
environment:
@ -16,7 +16,7 @@ services:
POSTGRES_PASSWORD: postgres
POSTGRES_DB: school
TZ: Europe/Paris
docuseal:
image: docuseal/docuseal:latest
depends_on:
@ -36,8 +36,8 @@ services:
environment:
- TZ=Europe/Paris
- TEST_MODE=True
- CORS_ALLOWED_ORIGINS=http://localhost:3000
- CSRF_TRUSTED_ORIGINS=http://localhost:3000
- CORS_ALLOWED_ORIGINS=http://localhost:3000,http://127.0.0.1:3000,http://localhost:8080,http://127.0.0.1:8080
- CSRF_TRUSTED_ORIGINS=http://localhost:3000,http://127.0.0.1:3000,http://localhost:8080,http://127.0.0.1:8080
links:
- "database:database"
- "redis:redis"
@ -79,4 +79,3 @@ services:
# - TZ=Europe/Paris
# depends_on:
# - backend