Add environment variables sample file
This commit is contained in:
parent
4b5452b69a
commit
931d6873c1
21
env.sample
Normal file
21
env.sample
Normal file
@ -0,0 +1,21 @@
|
||||
# FastAPI Environment Variables
|
||||
# Copy this file to .env and update the values as needed
|
||||
|
||||
# Application Configuration
|
||||
APP_HOST=0.0.0.0
|
||||
APP_PORT=8000
|
||||
APP_DEBUG=false
|
||||
|
||||
# Database Configuration
|
||||
DATABASE_URL=sqlite:////app/storage/db/db.sqlite
|
||||
|
||||
# Security Configuration
|
||||
SECRET_KEY=your-secret-key-here-change-in-production
|
||||
ALGORITHM=HS256
|
||||
ACCESS_TOKEN_EXPIRE_MINUTES=30
|
||||
|
||||
# CORS Configuration
|
||||
CORS_ORIGINS=*
|
||||
|
||||
# Application Environment
|
||||
ENVIRONMENT=development
|
Loading…
x
Reference in New Issue
Block a user