Skip to content

Commit

Permalink
fix(app): serve from port 8000
Browse files Browse the repository at this point in the history
nginx listens for the container on this port
  • Loading branch information
thekaveman committed Aug 16, 2022
1 parent 59c2800 commit a456940
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion eligibility_server/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,4 +57,4 @@ def __repr__(self):


if __name__ == "__main__":
app.run(host=app.config["HOST"], debug=app.config["DEBUG_MODE"]) # nosec
app.run(host=app.config["HOST"], debug=app.config["DEBUG_MODE"], port="8000") # nosec

0 comments on commit a456940

Please sign in to comment.