` virtual environment, python3
`
- Create a Folder on your Local machine / Computer
- Open Command prompt(git bash) / Terminal in the same folder location
Visit the project Repository on Github Website:
-
Click on the "Code" button on the Repo page
-
Copy the URL
-
In your Terminal, run: git clone repo-url-here
- run: python -m venv venv (Note i assemed you virtualenv installed. venv is the name of your virtual environment in this case)
- run: source env/scripts/activate (To activate the virtual environment) or .venv/bin/activate
- run: pip install -r requirements.txt
- run: export $(xargs < .env)
- run: python3 manage.py makemigrations
- run: python3 manage.py migrate
- run: python3 manage.py runserver