python app.py for flask debug

This commit is contained in:
bretello 2024-06-14 20:29:25 +02:00
parent a598299a12
commit d7562e7da2
Signed by: brethil
GPG Key ID: 876AAC6290170FE7

5
app.py
View File

@ -108,4 +108,7 @@ def run(cassetta: str):
if __name__ == "__main__": if __name__ == "__main__":
app.run() app.run(
host="0.0.0.0",
debug=True,
)