mirror of
https://github.com/complexcaresolutions/dak.c2s.git
synced 2026-03-17 14:53:41 +00:00
Switch from pymysql to psycopg2-binary, update connection string to postgresql+psycopg2, replace MySQL-specific JSON imports with generic SQLAlchemy JSON, convert MySQL prefix index to PostgreSQL left() function, and remove FetchedValue() (unnecessary with PostgreSQL). Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
24 lines
483 B
Text
24 lines
483 B
Text
# Database
|
|
DB_HOST=
|
|
DB_PORT=5432
|
|
DB_NAME=dak_c2s
|
|
DB_USER=dak_c2s_admin
|
|
DB_PASSWORD=
|
|
|
|
# JWT
|
|
JWT_SECRET_KEY=
|
|
JWT_ALGORITHM=HS256
|
|
ACCESS_TOKEN_EXPIRE_MINUTES=15
|
|
REFRESH_TOKEN_EXPIRE_DAYS=7
|
|
|
|
# SMTP
|
|
SMTP_HOST=smtp.complexcaresolutions.de
|
|
SMTP_PORT=465
|
|
SMTP_USER=noreply@complexcaresolutions.de
|
|
SMTP_PASSWORD=
|
|
SMTP_FROM=noreply@complexcaresolutions.de
|
|
|
|
# App
|
|
APP_NAME=DAK Zweitmeinungs-Portal
|
|
CORS_ORIGINS=http://localhost:5173,https://dak.complexcaresolutions.de
|
|
MAX_UPLOAD_SIZE=20971520
|