8 lines
138 B
Bash
8 lines
138 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
source bin/activate
|
||
|
pip install -r requirements.txt
|
||
|
docker compose up -d
|
||
|
python manage.py migrate
|
||
|
python manage.py runserver
|