diff options
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 27 |
1 files changed, 22 insertions, 5 deletions
@@ -2,11 +2,14 @@ ## Internal Apps ### Accounts -* adds profile to default Django user - * profile photo - * website - * bio - * location +* User + * custom User model subclassing AbstractUser as per best practices +* UserProfile + * adds profile to default Django user + * profile photo + * website + * bio + * location ## Rational for external dependencies @@ -33,3 +36,17 @@ ####Why * Simplest way to make all static assets go to Amazon S3 * Simplifies migrating server setups by keep static assets off the server +### Django Registration +[https://github.com/ubernostrum/django-registration/](https://github.com/ubernostrum/django-registration/) +####Why +* Simplest way to handle all aspects of registration/confirmation +* written by James Bennett +### pwned-passwords-django +[https://github.com/ubernostrum/pwned-passwords-django](https://github.com/ubernostrum/pwned-passwords-django) +####Why +* Because we should inform people when their passwords are compromised +* written by James Bennett +### Django-Extensions +[https://github.com/django-extensions/django-extensions](https://github.com/django-extensions/django-extensions) +####Why +* Because I'd go crazy without it. shell_plus is a godsend |