forked from external-repos/ivatar-docker
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 1m41s
11 lines
197 B
Bash
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
|