Skip to content

Latest commit

 

History

History
17 lines (13 loc) · 526 Bytes

README.md

File metadata and controls

17 lines (13 loc) · 526 Bytes

First started with Django backend.

  1. created virtual env named tenv and activate it using command "source tenv/bin/activate"
  2. Installed django and it's necessary packages. Packages are in 'requirements.txt'. Comannd line is: 'pip install -r requirements.txt'

Migrate the model

  1. configured settings, url.
  2. created model and migrate model.

Run the server: "python manage.py runserver"

API for frontend

  1. Made API for create, edit, and delete using rest_framework.

Then created FrontEnd using ReactJS.