2023-04-01 16:19:12 +02:00
|
|
|
POSTGRES_MAX_CONNECTIONS=200
|
|
|
|
POSTGRES_USER="fooder"
|
|
|
|
POSTGRES_DATABASE="fooder"
|
|
|
|
POSTGRES_PASSWORD=123
|
|
|
|
|
|
|
|
DB_URI="postgresql+asyncpg://${POSTGRES_USER}:${POSTGRES_PASSWORD}@database/${POSTGRES_DATABASE}"
|
|
|
|
ECHO_SQL=0
|
|
|
|
|
|
|
|
SECRET_KEY="" # generate with $ openssl rand -hex 32
|
2023-04-02 14:38:22 +02:00
|
|
|
REFRESH_SECRET_KEY="" # generate with $ openssl rand -hex 32
|
2023-04-01 16:19:12 +02:00
|
|
|
ALGORITHM="HS256"
|
|
|
|
ACCESS_TOKEN_EXPIRE_MINUTES=30
|
2023-04-02 14:38:22 +02:00
|
|
|
REFRESH_TOKEN_EXPIRE_DAYS=30
|