Bash · 297 bytes Raw Blame History
1 # backend/.env.example
2 DEBUG=True
3 SECRET_KEY=your-secret-key-here
4 ALLOWED_HOSTS=localhost,127.0.0.1
5
6 # Database (for production)
7 # DATABASE_URL=postgresql://user:password@localhost/bashamole
8
9 # CORS
10 CORS_ALLOWED_ORIGINS=http://localhost:3000,http://localhost:5173
11
12 # API Settings
13 API_PAGE_SIZE=100