From 4e46823ce82b0ef5747e2293fc1e2a1dc957b14f Mon Sep 17 00:00:00 2001 From: Ceda EI Date: Mon, 21 Dec 2020 02:12:34 +0530 Subject: [PATCH] Add sample config --- sample.config.py | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 sample.config.py 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": "*" +}