diff options
author | luxagraf <sng@luxagraf.net> | 2018-11-02 15:44:52 -0600 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2018-11-02 15:44:52 -0600 |
commit | 3b4fdf9613df08b182e1b8053414f8e6aed35ef3 (patch) | |
tree | 3bad4d10d2817d72bf7f7161e897fbe8037327c1 | |
parent | d7d0526f3d623367986b3cdfe8ba480fdd9f2fb2 (diff) |
updated Readme with Internal apps and External dependencies
-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 |