- ReactJs
- Material UI
- Django
Setup project manually by running the following commands:
Set up backend:
-
Change directory to /app directory
cd backend/
-
Install all backend project dependencies
pip install -r requirements.txt
-
Run migrations
python manage.py makemigrations
>python manage.py migrate
-
Start server
python manage.py runserver
-
Set up frontend:
- Change directory to /app directory
cd frontend/
- Run npm install to install all frontend project dependencies ( Assuming you have npm installed )
npm i
- run frontend development client
npm start