Skip to content

Commit

Permalink
Updated settings for Google credentials
Browse files Browse the repository at this point in the history
  • Loading branch information
Rebecca Lovewell committed Oct 26, 2012
1 parent 1b419e2 commit 0d1449e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 2 additions & 0 deletions conf/templates/django/local.py
Expand Up @@ -18,6 +18,8 @@

DEBUG = {% if debug %}True{% else %}False{% endif %}

GOOGLE_PASSWORD = '{{ google_password }}'

if not PROJECT_TEMPLATES:
path = os.path.join(PROJECT_DIR, 'templates')
dirs = list(TEMPLATE_DIRS)
Expand Down
2 changes: 1 addition & 1 deletion fabfile.py
Expand Up @@ -28,7 +28,7 @@
env.ssh_port = 2222
env.forward_agent = True
env.password_names = ['broker_password', 'password_create_salt',
'password_reset_salt']
'password_reset_salt', 'google_password']

# Additional settings for argyle
env.ARGYLE_TEMPLATE_DIRS = (
Expand Down
4 changes: 3 additions & 1 deletion openrural/settings/base.py
Expand Up @@ -38,7 +38,7 @@
'openrural.periodic_tasks',
'django.contrib.messages',
# Important: sorl.thumbnail should be added before easy_thumbnails!
# The template tags of the two apps conflict. We want to use sorl's
# The template tags of the two apps conflict. We want to use sorl's
# template tags, which we can get away with because OpenBlock code
# doesn't use the template tags of easy_thumbnails. Be careful when
# attempting to change thumbnail code!
Expand Down Expand Up @@ -188,3 +188,5 @@

OPENRURAL_PRODUCT_TITLE = 'My Community'
OPENRURAL_PRODUCT_DESCRIPTION = 'News and Data for Columbus County, NC'

GOOGLE_USERNAME = 'whiteville@openrural.org'

0 comments on commit 0d1449e

Please sign in to comment.