Skip to content

Latest commit

 

History

History
19 lines (16 loc) · 633 Bytes

README.md

File metadata and controls

19 lines (16 loc) · 633 Bytes

Coorganate

How to install dependencies on machine:

Global

  • Install dependencies for app outside of the repo project folder
    $ pip install -r requirements.txt
  • Run project in repo project folder
    $ python manage.py runserver

Local

  • Create virtual environment outside of the repo project folder to avoid pushing issues into repo
    $ python3 -m venv [folder path]
  • Activate environment
    $ source bin/activate
  • Install dependencies for app outside of the repo project folder
    $ pip install -r requirements.txt
  • Run project in repo project folder
    $ python manage.py runserver