/onewithdjango

E-Commerce Website Backend with Django Framework || Earlier backend was done with NodeJS

Primary LanguagePython

Proshop Backend How to set up the environment!

~/django> pip install virtual virtualenv

~/django> virtualenv myenv

~/django> source myenv/scripts/activate (I am using bash if you are using cmd instead of “/” use “\”)

~/django> pip install django

~/django> django-admin startproject backend (In React we have “npx create-react-app myapp”)

~/django> cd backend

~/backend> python manage.py run server