Skip to content

Latest commit

 

History

History
21 lines (15 loc) · 473 Bytes

README.md

File metadata and controls

21 lines (15 loc) · 473 Bytes

An app based on DRF Tutorial

Link to tutorial 1

Development setup

Install Python 3.7.2

Create a virtual environment:

python3 -m venv venv

Activate a venv:

source venv/bin/activate

Install dependencies:

pip install -r requirements.txt

Migrate db:

python3 manage.py makemigrations
python3 manage.py migrate

Create an admin account:

python manage.py createsuperuser