1: Create a virtualenv then use below command to install required packages for python through pip command.
pip install -r requiremnts.txt2: Use npm to install required packages for our nodejs packages
npm -i
npm run build3: use django-admin command to create new app.
django-admin startapp YOUR_APP_NAME4: migrate all necessary ORM database:
python manage.py migrate5: use npm command to create an optimized build.
npm run build