OSD-Backend/sample.config.py

11 lines
200 B
Python
Raw Normal View History

2020-12-20 21:42:34 +01:00
SECRET_KEY = "set this to something secret"
# Set host and port to listen on
HOST = "localhost"
PORT = 5050
# Config for SocketIO and EngineIO
SOCKET_IO_CONFIG = {
"cors_allowed_origins": "*"
}