19 lines
465 B
Plaintext
19 lines
465 B
Plaintext
|
|
# Database
|
||
|
|
DATABASE_URL=postgresql://vida180_user:vida180_strong_password_2024@postgres:5432/vida180_db
|
||
|
|
|
||
|
|
# Redis
|
||
|
|
REDIS_URL=redis://:vida180_redis_pass_2024@redis:6379/0
|
||
|
|
|
||
|
|
# JWT
|
||
|
|
SECRET_KEY=change-this-to-random-secret-key-in-production
|
||
|
|
ALGORITHM=HS256
|
||
|
|
ACCESS_TOKEN_EXPIRE_MINUTES=30
|
||
|
|
|
||
|
|
# App
|
||
|
|
API_V1_PREFIX=/api/v1
|
||
|
|
PROJECT_NAME=Vida180
|
||
|
|
DEBUG=True
|
||
|
|
|
||
|
|
# CORS
|
||
|
|
BACKEND_CORS_ORIGINS=["http://localhost:3000","http://localhost","http://vida180.com.br","https://vida180.com.br"]
|