Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion routes.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import os
from flask import Flask, render_template
app = Flask(__name__)

Expand All @@ -16,4 +17,4 @@ def myth():
return render_template('myth.html', the_title='Tiger in Myth and Legend')

if __name__ == '__main__':
app.run(debug=True)
app.run(host="0.0.0.0", port=8080)