Adding Backend project

This commit is contained in:
Alexis Leboeuf
2026-01-05 11:12:08 +01:00
parent 3aa3fa0a24
commit bf45847ab8
11 changed files with 702 additions and 0 deletions

9
back_end/compose.yaml Normal file
View File

@@ -0,0 +1,9 @@
services:
postgres:
image: 'postgres:latest'
environment:
- 'POSTGRES_DB=mydatabase'
- 'POSTGRES_PASSWORD=secret'
- 'POSTGRES_USER=myuser'
ports:
- '5432'