Spaces:
Sleeping
Sleeping
File size: 322 Bytes
9a03fcf |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
# Environment variables for OmniSealBench
# Copy this file to .env and modify as needed
# Flask settings
FLASK_APP=app.py
FLASK_ENV=development # Change to 'production' for deployment
# Server settings
PORT=5000
HOST=0.0.0.0
# Data paths (relative to the backend directory)
DATA_PATH=../data
EXAMPLES_PATH=../examples
|