-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env
30 lines (22 loc) · 1.07 KB
/
.env
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
# Flask Configuration
FLASK_APP=app.py
FLASK_ENV=development # Change to 'production' for production environment
# Database Configuration
DATABASE_URL=postgresql://username:password@localhost/piopenhub_db # PostgreSQL connection string
# Example for SQLite (uncomment if using SQLite):
# DATABASE_URL=sqlite:///site.db
# JWT Configuration
JWT_SECRET_KEY=your_jwt_secret_key_here # Secret key for JWT encoding/decoding
# Logging Configuration
LOGGING_LEVEL=DEBUG # Set to INFO or ERROR for production
# Web3 Configuration
WEB3_PROVIDER_URL=https://mainnet.infura.io/v3/your_infura_project_id # Example for Ethereum mainnet
# Quantum Computing Configuration
QISKIT_AER_PROVIDER=your_aer_provider_here # Optional: specify your Qiskit Aer provider
# AI Configuration
AI_MODEL_PATH=./models/your_model.pkl # Path to your trained AI model
# Other Configuration
SUSTAINABILITY_FUND=500000000 # Example value for sustainability fund
RESEARCH_AND_DEVELOPMENT_FUND=200000000 # Example value for R&D fund
# Optional: Additional configurations
DEBUG_MODE=True # Set to False in production