Files
ivatar-docker/entrypoint.sh
Ryan Hamilton 031b935584
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 1m41s
fix: ensure virtual environment is activated before running migrations
2025-07-25 09:15:37 -05:00

11 lines
197 B
Bash

#!/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