-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathReadme.txt
More file actions
22 lines (20 loc) · 694 Bytes
/
Readme.txt
File metadata and controls
22 lines (20 loc) · 694 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
i) Django & ReactJS assessment installation process:
There are two folders in the project.thay are backend and frontend. backend folder contains Django part and frontend folder contains ReactJS part.
Django:
Goto to backend and activate virtual environment
pip install -r requirements.txt
and run server in http://127.0.0.1:8000:
python manage.py runserver
ReactJS:
Goto frontend and run install the dependencies
npm install react-bootstrap bootstrap
npm install react-router-dom@6
npm install axios
npm install redux
npm install react-redux
npm install redux-thunk
npm install redux-devtools-extension
npm install jwt-decode
and run the server
npm start
That's it.