123456789101112131415161718 |
- #bush install.sh
- python -m venv env
- source env/Scripts/activate
- python -m pip install -U pip
- pip install -r requirements.txt
- python manage.py makemigrations
- python manage.py migrate
- python manage.py collectstatic
- python manage.py createsuperuser
- deactivate
|