21 lines
493 B
Plaintext
21 lines
493 B
Plaintext
# Admin Panel Environment Variables
|
|
|
|
# Flask
|
|
SECRET_KEY=your-secret-key-here
|
|
DEBUG=False
|
|
|
|
# Database (SQLite for dev, PostgreSQL for production)
|
|
DATABASE_URL=sqlite:///data/admin_panel.db
|
|
# DATABASE_URL=postgresql://admin_user:admin_pass@localhost/admin_hosting_db
|
|
|
|
# JWT
|
|
JWT_SECRET_KEY=your-jwt-secret-here
|
|
|
|
# Customer API
|
|
CUSTOMER_API_URL=http://customer-backend:5000
|
|
CUSTOMER_API_INTERNAL_KEY=your-internal-api-key-here
|
|
|
|
# CORS
|
|
CORS_ORIGINS=https://admin.argeict.net,http://localhost:5173
|
|
|