mirror of
https://github.com/gsi-upm/senpy
synced 2024-10-31 23:41:41 +00:00
5 lines
99 B
Python
5 lines
99 B
Python
|
import os
|
||
|
|
||
|
SERVER_PORT = os.environ.get("SERVER_PORT", 5000)
|
||
|
DEBUG = os.environ.get("DEBUG", True)
|