I have used Reactjs and materialUI for the frontend and django and rest_framework for the api and backend
make a virtualenv π
python -m venv venv
activate the virtualenvπ
venv\Scripts\activate
install django packages π
pip install -r requirements.txt
do the migration part π
python manage.py makemigrations
python manage.py migrate
run the django server π
python manage.py runserver
move to the frontend directory π
cd frontend
install react and related packages π
npm i
compile the frontend and run π
npm run build
or for development π
npm run dev