React And Django App

CRUD Operations using React for frontend and Django for backend

Run the Project

Clone the repository

Running the Django Project

Move into server directory (django):

cd server

Run migrations:

python manage.py makemigrations
python manage.py migrate

Run on port 8000:

python manage.py runserver

Running the ReactJS Project

Move into client directory (ReactJS)

cd client

Install dependencies

npm install

Create .env file using .env.sample

Start the project

npm start