create wallpaper for body and make app listen on 0.0.0.0

This commit is contained in:
beertap
2022-07-17 15:21:02 +02:00
parent 650ac394c6
commit d76c628394
5 changed files with 17 additions and 2 deletions

View File

@@ -3,4 +3,4 @@ from beertap import create_app
app = create_app()
if __name__ == "__main__":
app.run(debug=True)
app.run(host='0.0.0.0', debug=True)