17 lines
428 B
Python
17 lines
428 B
Python
import os
|
|
|
|
class Config:
|
|
#Configuration base de données
|
|
MYSQL_HOST = 'localhost'
|
|
MYSQL_USER = 'smarthome_user'
|
|
MYSQL_PASSWORD = 'motdepasse123'
|
|
MYSQL_DB = 'smarthome'
|
|
|
|
#Configuration JWT
|
|
JWT_SECRET_KEY = 'smarthome_secret_key_2024'
|
|
|
|
#Configuration MQTT
|
|
MQTT_BROKER = 'localhost'
|
|
MQTT_PORT = 1883
|
|
MQTT_TOPIC_CLIMATE = 'smarthome/climate'
|
|
MQTT_TOPIC_SECURITY = 'smarthome/security' |