chore: merge conflicts

This commit is contained in:
N3WT DE COMPET
2025-02-23 19:08:13 +01:00
parent 1911f79f45
commit 445cf35382
11 changed files with 187 additions and 166 deletions

View File

@ -18,6 +18,15 @@ services:
POSTGRES_PASSWORD: postgres
POSTGRES_DB: school
TZ: Europe/Paris
docuseal:
image: docuseal/docuseal:latest
depends_on:
- database
ports:
- 3001:3000
environment:
- DATABASE_URL=postgresql://postgres:postgres@database:5432/docuseal
backend:
build:
@ -37,19 +46,20 @@ services:
depends_on:
- redis
- database
- docuseal
command: python start.py
frontend:
build:
context: ./Front-End
args:
- BUILD_MODE=development
ports:
- 3000:3000
volumes:
- ./Front-End:/app
environment:
- TZ=Europe/Paris
depends_on:
- backend
# frontend:
# build:
# context: ./Front-End
# args:
# - BUILD_MODE=development
# ports:
# - 3000:3000
# volumes:
# - ./Front-End:/app
# environment:
# - TZ=Europe/Paris
# depends_on:
# - backend