Skip to content

Commit

Permalink
shebang, debug
Browse files Browse the repository at this point in the history
  • Loading branch information
roddds committed Mar 6, 2016
1 parent b21ebe4 commit 93605ab
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion main.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#! /usr/bin/env python
from flask import Flask, render_template

app = Flask(__name__)
Expand All @@ -12,4 +13,4 @@ def page_not_found(e):
return render_template("404.html")

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

0 comments on commit 93605ab

Please sign in to comment.