Skip to content

Commit

Permalink
fix: remove poetry run from replit deployment command
Browse files Browse the repository at this point in the history
  • Loading branch information
Bharat Ramanathan committed Nov 9, 2023
1 parent 3554ec0 commit 37e86e4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions run.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
(poetry run uvicorn wandbot.api.app:app --host="0.0.0.0" --port=8000) & \
(poetry run python -m wandbot.apps.slack) & \
(poetry run python -m wandbot.apps.discord)
(uvicorn wandbot.api.app:app --host="0.0.0.0" --port=8000) & \
(python -m wandbot.apps.slack) & \
(python -m wandbot.apps.discord)

0 comments on commit 37e86e4

Please sign in to comment.