Boilerplate

It is a boiler-plate for django with login and signup features added by default. This repository is made for personal usage.

Installation (Mac and Linux)

Clone the repository and then run the following commands.

  • Create a virtual environment
python3 -m venv ./venv
  • Activate virtual environment
source ./venv/bin/activate
  • Install all the required packages
pip3 install -r requirements.txt

Installation (Windows)

Clone the repository and then run the following commands.

  • Create a virtual environment
python -m venv ./venv
  • Activate virtual environment
venv/Script/activate
  • Install all the required packages
pip install -r requirements.txt

Usage

  • Mac and Linux
python3 manage.py runserver
  • Windows
python manage.py runserver

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.