Skip to content

Commit

Permalink
fixed webhook start
Browse files Browse the repository at this point in the history
  • Loading branch information
ychebyshev committed Jan 8, 2024
1 parent b9f6ab8 commit fba0646
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion shvatka/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,13 @@ async def main() -> FastAPI:


def run():
uvicorn.run("shvatka.api:main", factory=True, log_config=None)
uvicorn.run(
"shvatka.api:main",
host="0.0.0.0",
port=8000,
factory=True,
log_config=None,
)


if __name__ == "__main__":
Expand Down

0 comments on commit fba0646

Please sign in to comment.