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 11, 2022
1 parent 2ff74cc commit a713765
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 @@ -38,4 +38,4 @@ def __repr__(self):


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

0 comments on commit a713765

Please sign in to comment.