Skip to content

Commit 992e555

Browse files
authored
Update development.yaml
1 parent 9f0278d commit 992e555

File tree

1 file changed

+36
-10
lines changed

1 file changed

+36
-10
lines changed

config/development.yaml

Lines changed: 36 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,43 @@
1-
# development.yaml
1+
# Configuration for the Stable Pi Core development environment
2+
23
logging:
3-
level: DEBUG
4+
level: DEBUG # Set the logging level (DEBUG, INFO, WARNING, ERROR, CRITICAL)
45

56
database:
6-
host: localhost
7-
port: 5432
8-
user: dev_user
9-
password: dev_password
10-
db_name: stable_pi_dev
7+
host: localhost # Database host
8+
port: 5432 # Database port
9+
user: dev_user # Database username
10+
password: dev_password # Database password (consider using environment variables for security)
11+
db_name: stable_pi_dev # Database name
1112

1213
model_paths:
13-
demand_model_path: "models/demand_prediction_model.pkl"
14-
asset_model_path: "models/asset_management_model.pkl"
14+
demand_model_path: "models/demand_prediction_model.pkl" # Path to the demand prediction model
15+
asset_model_path: "models/asset_management_model.pkl" # Path to the asset management model
1516

1617
api:
17-
base_url: "http://localhost:5000"
18+
base_url: "http://localhost:5000" # Base URL for the API
19+
20+
# Additional configurations
21+
security:
22+
secret_key: "your_secret_key" # Secret key for session management (consider using environment variables)
23+
token_expiration: 3600 # Token expiration time in seconds
24+
25+
features:
26+
enable_feature_x: true # Enable or disable specific features
27+
enable_feature_y: false
28+
29+
# Email configuration (if applicable)
30+
email:
31+
smtp_server: "smtp.example.com" # SMTP server for sending emails
32+
smtp_port: 587 # SMTP port
33+
smtp_user: "your_email@example.com" # Email username
34+
smtp_password: "your_email_password" # Email password (consider using environment variables)
35+
36+
# External service configurations
37+
external_services:
38+
service_a:
39+
api_key: "your_service_a_api_key" # API key for external service A
40+
endpoint: "https://api.service-a.com" # Endpoint for external service A
41+
service_b:
42+
api_key: "your_service_b_api_key" # API key for external service B
43+
endpoint: "https://api.service-b.com" # Endpoint for external service B

0 commit comments

Comments
 (0)