From c56666e68fe548491131aa105001fde8913b0b59 Mon Sep 17 00:00:00 2001 From: Skud Date: Tue, 30 Apr 2013 10:11:22 +1000 Subject: [PATCH] added credentials.example --- credentials.example | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100755 credentials.example diff --git a/credentials.example b/credentials.example new file mode 100755 index 000000000..3f3f00ef3 --- /dev/null +++ b/credentials.example @@ -0,0 +1,28 @@ +#!/bin/bash + +# This file is an empty sample file which you (i.e. Growstuff +# developers) can copy and use to store your API credentials for +# external APIs used by the Growstuff application. + +# To use this file, simply copy it to credentials.sh (which is +# .gitignore'd) and then fill in whatever credentials you need. Then in +# the window where you run "rails s", first run: +# +# source credentials.sh +# +# If you then run "rails s", it will have all the environment variables +# available to it. + +### CREDENTIALS ### + +# Mandrill is used to send transactional email (eg. signup +# confirmations). If using Heroku connect to Mandrill via Heroku addons +# list then go to tools menu (upper right) and choose "SMTP and API +# Credentials" +export MANDRILL_USERNAME="" +export MANDRILL_APIKEY="" + +# Used for connecting member accounts to Twitter +# Get Twitter key from https://dev.twitter.com/apps +export TWITTER_KEY="" +export TWITTER_SECRET=""