host settings

This commit is contained in:
Frank "PHiAX" Weggelaar 2024-08-31 20:26:25 +02:00
parent b5b6902262
commit 1af487770b

2
app.py
View file

@ -14,6 +14,8 @@ sink = inputs[-1]
# initialization
app = Flask(__name__)
app.config['SECRET_KEY'] = 'the quick brown fox jumps over the lazy dog'
app.config["HOST"] = "0.0.0.0"
app.config["PORT"] = 5000
class User():
def generate_auth_token(self, expires_in=600):