Skip to content

Commit

Permalink
Merge pull request #573 from rivenmedia/fix_api_port
Browse files Browse the repository at this point in the history
fix: api port back to 8080
  • Loading branch information
Gaisberg authored Jul 24, 2024
2 parents e1db03d + 6a7cf4f commit 02aab4f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ def signal_handler():
signal.signal(signal.SIGINT, signal_handler)
signal.signal(signal.SIGTERM, signal_handler)

config = uvicorn.Config(app, host="0.0.0.0", port=3005, log_config=None)
config = uvicorn.Config(app, host="0.0.0.0", port=8080, log_config=None)
server = Server(config=config)

with server.run_in_thread():
Expand Down

0 comments on commit 02aab4f

Please sign in to comment.