mirror of
https://github.com/Rhinemann/IoT-Systems.git
synced 2026-03-14 20:50:39 +02:00
5 lines
118 B
Python
5 lines
118 B
Python
|
|
import os
|
||
|
|
|
||
|
|
STORE_HOST = os.environ.get("STORE_HOST") or "localhost"
|
||
|
|
STORE_PORT = os.environ.get("STORE_PORT") or 8000
|