fix: ensure virtual environment is activated before running migrations
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 1m41s

This commit is contained in:
2025-07-25 09:15:37 -05:00
parent e9155b5169
commit 031b935584

View File

@@ -1,4 +1,10 @@
#!/bin/ash
# Activate the virtual environment
source .virtualenv/bin/activate
# Run Django migrations
./manage.py migrate
# Start the Django development server
exec ./manage.py runserver 0:8080