django_template

A basic template for you to get started using Django in your projects. Follow guides here:

Virtual Environment settings

installing env settings from the django template

open terminal in the root of the project folder and:

    pip install -r requirements.txt

saving env settings

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