Initial commit

This commit is contained in:
2024-04-19 04:21:19 +00:00
commit dd3482c11d
25 changed files with 7933 additions and 0 deletions

11
.env.sample Normal file
View File

@@ -0,0 +1,11 @@
export PORT=8080
export DB_HOST=localhost
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}
export SESSION_KEY="1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef"