fixing my stupids.

This commit is contained in:
Dan Funk 2020-01-08 16:05:16 -05:00
parent 80a4fee4cc
commit 4ab0fc4370
3 changed files with 7 additions and 2 deletions

3
.gitignore vendored
View File

@ -1 +1,2 @@
.idea
.idea
__pycache__/

4
app.py
View File

@ -44,3 +44,7 @@ def site_map():
links.append((url, rule.endpoint))
return json.dumps({"links": links})
if __name__ == '__main__':
# run our standalone gevent server
app.run(port=4200)

2
run.py
View File

@ -1,3 +1,3 @@
import app
from app import app
if __name__ == "__main__":
app.run(host='0.0.0.0', port=6000)