Initial commit

This commit is contained in:
2023-10-29 19:28:07 +00:00
commit b0d0353ba7
25 changed files with 7930 additions and 0 deletions

9
.env.sample Normal file
View File

@@ -0,0 +1,9 @@
export PORT=8080
export DB_HOST=postgres
export DB_USER=postgres
export DB_PASSWORD=password
export DB_NAME=db_name
export DB_PORT=5432
export DATABASE_URL=postgres://${DB_USER}:${DB_PASSWORD}@${DB_HOST}:${DB_PORT}/${DB_NAME}