mirror of
https://github.com/MrUnknownDE/bierkasten-casino.git
synced 2026-04-19 14:53:45 +02:00
25 lines
735 B
Plaintext
25 lines
735 B
Plaintext
# Postgres
|
|
POSTGRES_USER=bierbaron
|
|
POSTGRES_PASSWORD=verysecret
|
|
POSTGRES_DB=bierbaron_casino
|
|
DATABASE_URL=postgres://bierbaron:verysecret@db:5432/bierbaron_casino
|
|
|
|
# App
|
|
APP_PORT=3000
|
|
APP_BASE_URL=http://localhost
|
|
FRONTEND_ORIGIN=http://localhost
|
|
|
|
# Discord OAuth (Platzhalter, trägst du später ein)
|
|
DISCORD_CLIENT_ID=your_discord_client_id
|
|
DISCORD_CLIENT_SECRET=your_discord_client_secret
|
|
DISCORD_REDIRECT_URI=http://localhost:3000/auth/discord/callback
|
|
|
|
# Sessions / JWT
|
|
SESSION_SECRET=change_me_please
|
|
# Lokale Umgebung: HTTP only -> false
|
|
# Später hinter echter HTTPS-Domain: true
|
|
COOKIE_SECURE=false
|
|
|
|
# Admins
|
|
# Kommagetrennte Liste von Discord-IDs, die Adminrechte haben
|
|
ADMIN_DISCORD_IDS=123456789012345678,987654321098765432 |