OSD-Backend/sample.config.py

11 lines
200 B
Python

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": "*"
}