17 lines
415 B
Plaintext
17 lines
415 B
Plaintext
# Copy this file to .env and fill in your values
|
|
POSTGRES_USER=stock
|
|
POSTGRES_PASSWORD=your_password_here
|
|
POSTGRES_DB=stockdb
|
|
|
|
REDIS_URL=redis://redis:6379/0
|
|
CELERY_BROKER_URL=redis://redis:6379/1
|
|
|
|
SECRET_KEY=your-super-secret-key-change-this-in-production-please
|
|
ACCESS_TOKEN_EXPIRE_MINUTES=30
|
|
REFRESH_TOKEN_EXPIRE_DAYS=7
|
|
|
|
DEBUG=false
|
|
ALLOWED_ORIGINS=http://localhost:3000
|
|
|
|
# TUSHARE_TOKEN=your_tushare_token_here
|