python
python -m venv env
Set-ExecutionPolicy -Scope Process Bypass
.\env\Scripts\Activate
pip install -r requirements.txt
Step 3 : Download and Install NodeJs from https://nodejs.org/ . After Installing run these commands to run the frontend from the "explo" directory
cd frontend
npm install
npm run dev
Step 4 : Open another terminal window in the explo project directory and run these commands to run the backend from the "explo" directory
Set-ExecutionPolicy -Scope Process Bypass
.\env\Scripts\Activate
cd backend
python .\manage.py makemigrations
python .\manage.py migrate
python .\manage.py createsuperuser
python .\manage.py runserver
sudo apt-get install python3-pip
sudo pip3 install virtualenv
virtualenv env
source env/bin/activate
pip install -r requirements.txt
sudo apt install nodejs npm
cd frontend
npm install
npm run dev
source env/bin/activate
cd backend
python3 manage.py makemigrations
python3 manage.py migrate
python3 manage.py createsuperuser
python3 manage.py runserver
sudo pip3 install virtualenv
virtualenv env
source env/bin/activate
pip3 install -r requirements.txt
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
brew install node
cd frontend
npm install
npm run dev
source env/bin/activate
cd backend
python3 manage.py makemigrations
python3 manage.py migrate
python3 manage.py createsuperuser
python3 manage.py runserver
After running the backend and frontend, go to 127.0.0.1:8000/admin and login with the created super user credentials, and then assign super user status to the user to which you want to assign the super user role