Skip to content

Commit

Permalink
dadsa
Browse files Browse the repository at this point in the history
  • Loading branch information
Masterjx9 committed Sep 13, 2022
1 parent 6dd6efc commit d89d3e0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from flask import Flask, render_template, request, session, flash, redirect, url_for
print("trying to import flask_wtf")
import os
# from flask_wtf import FlaskForm
# from wtforms import StringField, SubmitField
# from wtforms.validators import DataRequired
Expand Down Expand Up @@ -122,5 +122,5 @@ def hello():


if __name__ == "__main__":
app.run(host="0.0.0.0", port=5000, threaded=True)
app.run(host="0.0.0.0", port=os.environ.get("PORT"), threaded=True)

0 comments on commit d89d3e0

Please sign in to comment.