A basic template for you to get started using Django in your projects. Follow guides here:
- How to set up VS code Studio
- How to download github repo to VS Code Studio
- What are branches and merging + how to create them
open terminal in the root of the project folder and:
pip install -r requirements.txt
In order to save settings from your virtual environment when uploading onto GitHub, there must be a file called requirements.txt
in the root of your project.
To save the settings and currently installed add ons open terminal in your project directory and type:
pip freeze > requirements.txt