Initial commit

This commit is contained in:
2025-05-27 09:11:08 +00:00
commit b032ffae1c
32 changed files with 2489 additions and 0 deletions

6
.env.example Normal file
View File

@@ -0,0 +1,6 @@
DB_HOST=localhost
DB_PORT=5432
DB_NAME=daily-aujourdhui-backend
DB_USER=dev
DB_PASSWORD=password
DATABASE_URL=postgresql://${DB_USER}:${DB_PASSWORD}@${DB_HOST}:${DB_PORT}/${DB_NAME}