- Make sure to have python installed in your computer
- Click Use this template
- Make your own repository using this
- Make folder for this project and cd into it
- Clone that repository into that folder(I personally use Github Desktop cause it is so much easier!)
git clone https://github.com/<Username>/<Name of Repo>.git>
- Create a venv and activate it
pip install virtualenv
virtualenv venv
source venv/bin/activate
- Install all project dependencies
pip install -r requirements.txt
- Be sure to add your own Secret Key and Email credentials in Settings.py
- Create the database
python manage.py migrate
- Create a superuser and fill out the prompts, the password will be blank(it is for security)
python manage.py createsuperuser