Initial commit
Some checks failed
CI / tests (push) Failing after 3m18s
Publish Docker image / publish (push) Failing after 13s

This commit is contained in:
2024-08-10 09:33:15 +00:00
commit c73ff3d581
33 changed files with 2585 additions and 0 deletions

6
.env.example Normal file
View File

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