Skip to content

Commit

Permalink
Refactor app.py to disable debug mode in production environment
Browse files Browse the repository at this point in the history
  • Loading branch information
Erik172 committed May 6, 2024
1 parent 38d5df9 commit 1c0189f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,4 @@
api.add_resource(Audit, "/audit")

if __name__ == "__main__":
app.run(debug=True, host="0.0.0.0", port=5000)
app.run(debug=False, host="0.0.0.0", port=5000)

0 comments on commit 1c0189f

Please sign in to comment.