- created virtual env named tenv and activate it using command "source tenv/bin/activate"
- Installed django and it's necessary packages. Packages are in 'requirements.txt'. Comannd line is: 'pip install -r requirements.txt'
- configured settings, url.
- created model and migrate model.
Run the server: "python manage.py runserver"
- Made API for create, edit, and delete using rest_framework.