Add sample config

This commit is contained in:
Ceda EI 2020-12-21 02:12:34 +05:30
parent d7015c186e
commit 4e46823ce8
1 changed files with 10 additions and 0 deletions

10
sample.config.py Normal file
View File

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