mirror of
https://github.com/ferdzo/iotDashboard.git
synced 2026-04-05 17:16:26 +00:00
20 lines
384 B
Plaintext
20 lines
384 B
Plaintext
# Django Settings
|
|
SECRET_KEY=your-secret-key-here
|
|
DEBUG=True
|
|
|
|
# Database
|
|
CONNECTION_STRING=postgresql://postgres:password@localhost:5432/iotdashboard
|
|
|
|
# Redis Configuration
|
|
REDIS_HOST=localhost
|
|
REDIS_PORT=6379
|
|
REDIS_DB=0
|
|
|
|
# MQTT Configuration
|
|
MQTT_BROKER=localhost
|
|
MQTT_PORT=1883
|
|
MQTT_USER=mqtt_user
|
|
MQTT_PASS=mqtt_password
|
|
|
|
# GPT/OpenAI (Optional)
|
|
OPENAI_API_KEY=your-openai-key-here |