Updating README and requirements

This commit is contained in:
Matthew Ryan Dillon 2016-06-08 10:07:13 -07:00
parent 48b6adc70e
commit 39a46fe9e9
3 changed files with 29 additions and 20 deletions

View file

@ -13,14 +13,7 @@ A collections and contaminants database.
## Basic Commands ## Basic Commands
### Setting Up Your Users To create a **superuser account**, use this command:
To create a **normal user account**, just go to Sign Up and fill out the form.
Once you submit it, you'll see a "Verify Your E-mail Address" page. Go to your
console to see a simulated email verification message. Copy the link into your
browser. Now the user's email should be verified and ready to go.
To create a **superuser account**, use this command::
$ python manage.py createsuperuser $ python manage.py createsuperuser
@ -45,6 +38,10 @@ To create a **superuser account**, use this command::
heroku config:set DJANGO_MAILGUN_SERVER_NAME=YOUR_MALGUN_SERVER heroku config:set DJANGO_MAILGUN_SERVER_NAME=YOUR_MALGUN_SERVER
heroku config:set DJANGO_MAILGUN_API_KEY=YOUR_MAILGUN_API_KEY heroku config:set DJANGO_MAILGUN_API_KEY=YOUR_MAILGUN_API_KEY
heroku config:set CORS_ORIGIN_WHITELIST=domain1,domain2,domain3
heroku config:set MANIFEST_URL=some_data_url # optional
heroku config:set PYTHONHASHSEED=random heroku config:set PYTHONHASHSEED=random
heroku config:set DJANGO_ADMIN_URL=\^somelocation/ heroku config:set DJANGO_ADMIN_URL=\^somelocation/

View file

@ -1,13 +1,13 @@
django==1.8.9 django==1.8.13
# Configuration # Configuration
django-environ==0.4.0 django-environ==0.4.0
django-secure==1.0.1 django-secure==1.0.1
whitenoise==2.0.4 whitenoise==3.2
# Forms # Forms
django-braces==1.8.1 django-braces==1.9.0
django-crispy-forms==1.5.2 django-crispy-forms==1.6.0
# Views # Views
django-extra-views==0.7.1 django-extra-views==0.7.1
@ -16,26 +16,32 @@ django-extra-views==0.7.1
psycopg2==2.6.1 psycopg2==2.6.1
# User Registration # User Registration
django-allauth==0.24.1 django-allauth==0.25.2
# Unicode slugification # Unicode slugification
unicode-slugify==0.1.3 unicode-slugify==0.1.3
django-autoslug==1.9.3 django-autoslug==1.9.3
# Time zones support # Time zones support
pytz==2015.7 pytz==2016.4
# Bootstrap # Bootstrap
django-bootstrap3==6.2.2 django-bootstrap3==7.0.1
# Data grids # Data grids
django-tables2==1.0.4 django-tables2==1.2.2
# Admin # Admin
django-grappelli==2.7.3 django-grappelli==2.8.1
# Date/time strings # Date/time strings
python-dateutil==2.4.2 python-dateutil==2.5.3
# HTTP # HTTP
requests==2.9.1 requests==2.10.0
# REST
djangorestframework==3.3.3
django-cors-headers==1.1.0
django-filter==0.13.0
djoser==0.4.3

View file

@ -1,4 +1,10 @@
-r base.txt -r base.txt
Werkzeug==0.10.4 Werkzeug==0.11.10
django-debug-toolbar==1.4 django-debug-toolbar==1.4
django-extensions==1.6.7
flake8==2.5.4
pygraphviz==1.3.1
ipython==4.2.0
django-test-without-migrations==0.4
factory-boy==2.7.0