KingNish commited on
Commit
2aac2cf
·
verified ·
1 Parent(s): 7ece648

Rename app.py to templates/app.py

Browse files
Files changed (1) hide show
  1. app.py → templates/app.py +2 -1
app.py → templates/app.py RENAMED
@@ -35,4 +35,5 @@ def get_people_also_search():
35
 
36
 
37
  if __name__ == "__main__":
38
- app.run(debug=True)
 
 
35
 
36
 
37
  if __name__ == "__main__":
38
+ port = int(os.environ.get('PORT', 7860))
39
+ app.run(host='0.0.0.0', port=port)