Django REST Framework implementation
- Install Python 3.x
- Install virtualenv
- Make environment by run
virtualenv -p python env
- Install python packages by run
pip install -r requirements.txt
- Go to tutorial directory to run app:
- Run DB Migration:
python manage.py migrate
- Run server:
python manage.py runserver
- Run Django Shell:
python manage.py shell
- Run Test:
python manage.py test {app-name}
- Run DB Migration: