soiz1 commited on
Commit
334dd32
·
verified ·
1 Parent(s): 127d0dc

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -0
app.py CHANGED
@@ -64,3 +64,6 @@ def index():
64
  return f"エラー内容(JSON形式でない可能性): {response.text}", response.status_code
65
 
66
  return render_template("index.html")
 
 
 
 
64
  return f"エラー内容(JSON形式でない可能性): {response.text}", response.status_code
65
 
66
  return render_template("index.html")
67
+ if __name__ == "__main__":
68
+ app.run(host="0.0.0.0", port=7860)
69
+