Skip to content

Commit

Permalink
Use production server
Browse files Browse the repository at this point in the history
  • Loading branch information
Ph0tonic committed May 7, 2024
1 parent 3896048 commit 3f27d10
Show file tree
Hide file tree
Showing 3 changed files with 211 additions and 194 deletions.
3 changes: 2 additions & 1 deletion certificateservice/cli.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
import logging

from certificateservice.app import app
from waitress import serve


def main():
logging.basicConfig(level=logging.DEBUG)
app.run(host='0.0.0.0', port=5001)
serve(app, host="0.0.0.0", port=5001)


if __name__ == "__main__":
Expand Down
Loading

0 comments on commit 3f27d10

Please sign in to comment.