diff --git a/sample.config.py b/sample.config.py new file mode 100644 index 0000000..b545dac --- /dev/null +++ b/sample.config.py @@ -0,0 +1,10 @@ +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": "*" +}