17 lines
509 B
Plaintext
17 lines
509 B
Plaintext
|
|
# Kopiere diese Datei nach .env und passe die Werte an.
|
||
|
|
|
||
|
|
# PostgreSQL
|
||
|
|
POSTGRES_USER=gartenmanager
|
||
|
|
POSTGRES_PASSWORD=sicheres_passwort_aendern
|
||
|
|
POSTGRES_DB=gartenmanager
|
||
|
|
|
||
|
|
# Backend
|
||
|
|
DATABASE_URL=postgresql+asyncpg://gartenmanager:sicheres_passwort_aendern@db:5432/gartenmanager
|
||
|
|
SECRET_KEY=bitte_aendern_langer_zufaelliger_string_min_32_zeichen
|
||
|
|
ACCESS_TOKEN_EXPIRE_MINUTES=30
|
||
|
|
REFRESH_TOKEN_EXPIRE_DAYS=7
|
||
|
|
CORS_ORIGINS=["http://localhost", "http://localhost:80"]
|
||
|
|
|
||
|
|
# Frontend
|
||
|
|
VITE_API_BASE_URL=http://localhost:8000
|