Compare commits

..

1 Commits

Author SHA1 Message Date
vlnst 038f36c342 Update dependencies, add Dockerfile and docker-compose.yml
Signed-off-by: vlnst <vlnst@bloat.cat>
2024-01-14 21:50:49 +03:00
1 changed files with 2 additions and 1 deletions

View File

@ -43,4 +43,5 @@ def catch_all(path):
return render_template('index.html', data=scraped)
if __name__ == '__main__':
app.run(port=8000)
from waitress import serve
serve(app, host="0.0.0.0", port=8080)