Minimal Django Project with Registration for easy re-use during testing.
Much of this code comes from my Stripe Subscription test project with Django. So you will find the word "Stripe" scattered around the code.
Additionally, this is only a base! For personal perference, I have disabled all AUTH_PASSWORD_VALIDATORS when DEBUG is True.
I actually HIGHLY recommend you use cookiecutter-django (with Docker) for large scale applications. Otherwise, enjoy my base project setup.
You can set this code up by:
- Cloning or downloading this respository.
- Creating a virtual environment.
Pip install django
- Note: the django that this uses is Django==3.0.2 so some dependencies can break.
All notable changes to this project will be documented in this file.
- Entire Django project
- Registration added with minimal template setup
- A little bit of Stripe code :P Will delete later.
- Made AUTH_PASSWORD_VALIDATORS an empty list if
DEBUG=True
License: MIT License Attribution is not necessary.