Skip to content

Commit

Permalink
remove:Poetry usage from deployment script.
Browse files Browse the repository at this point in the history
Replaced Poetry commands with direct Python execution for migrations and server startup. Simplifies the script and removes dependency on Poetry for runtime execution.
  • Loading branch information
hareshkainthdbt committed Dec 12, 2024
1 parent 7eaa987 commit b862768
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions paas_entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

set -ex # Prints each command as it runs. If a command fails, it will halt at that point

poetry run python manage.py migrate --noinput
python manage.py migrate --noinput

# Start the server
poetry run gunicorn fbr.wsgi:application --bind "0.0.0.0:$PORT"
gunicorn fbr.wsgi:application --bind "0.0.0.0:$PORT"

0 comments on commit b862768

Please sign in to comment.