Spaces:
Sleeping
Sleeping
File size: 855 Bytes
90537f3 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 |
# Environment Variables for Tabble-v3
# Server Configuration
PORT=7860
HOST=0.0.0.0
# Security
SECRET_KEY=your_secret_key_here_change_in_production
# Application Settings
DEBUG=False
APP_NAME=Tabble-v3
APP_VERSION=3.1.0
# Database Configuration
# Note: SQLite databases are auto-created based on hotels.csv
# Firebase Configuration (Optional - for production phone authentication)
# FIREBASE_PRIVATE_KEY_ID=your_firebase_private_key_id
# FIREBASE_PRIVATE_KEY=your_firebase_private_key
# FIREBASE_CLIENT_EMAIL=your_firebase_client_email
# FIREBASE_CLIENT_ID=your_firebase_client_id
# FIREBASE_AUTH_URI=https://accounts.google.com/o/oauth2/auth
# FIREBASE_TOKEN_URI=https://oauth2.googleapis.com/token
# Hugging Face Spaces
HUGGINGFACE_SPACES=1
# CORS Settings (for production, specify allowed origins)
ALLOWED_ORIGINS=["*"]
# Logging
LOG_LEVEL=INFO |