Skip to content

Commit

Permalink
feat: use HIVE_PORT in prod
Browse files Browse the repository at this point in the history
  • Loading branch information
aleneum committed Dec 12, 2024
1 parent 2b33dd3 commit a258b12
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hive_cli/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def prod() -> None:
uvicorn.run(
app,
host=os.getenv("HIVE_HOST", "localhost"),
port=443,
port=os.getenv("HIVE_PORT", 443),
ssl_keyfile=settings.server.ssl.key_path,
ssl_certfile=settings.server.ssl.cert_path,
ssl_keyfile_password=settings.server.ssl.passphrase,
Expand Down

0 comments on commit a258b12

Please sign in to comment.