install_unix.sh 266 B

123456789101112131415161718
  1. #bush install.sh
  2. python3 -m venv env
  3. source env/bin/activate
  4. python3 -m pip install -U pip
  5. pip install -r requirements.txt
  6. python3 manage.py makemigrations
  7. python3 manage.py migrate
  8. python3 manage.py collectstatic
  9. python3 manage.py createsuperuser
  10. deactivate