change config

This commit is contained in:
Frank "PHiAX" Weggelaar 2024-08-31 20:27:58 +02:00
parent 1af487770b
commit 92d1ae28f3

4
app.py
View file

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