Skip to content

Commit

Permalink
Merge pull request #217 from eddie-ruva/chore/add_config_files_example
Browse files Browse the repository at this point in the history
Adds missing example config files
  • Loading branch information
eddie-ruva committed Feb 19, 2014
2 parents faa9c4d + 00bd22a commit a227a9b
Show file tree
Hide file tree
Showing 2 changed files with 57 additions and 0 deletions.
36 changes: 36 additions & 0 deletions config/application.yml.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# More info at https://github.com/laserlemon/figaro


# Facebook credentials
FACEBOOK_SECRET: ''
FACEBOOK_KEY: ''

# Twitter credentials
TWITTER_KEY: ''
TWITTER_SECRET: ''
TWITTER_OAUTH_TOKEN: ''
TWITTER_OAUTH_TOKEN_SECRET: ''

# Sendgrid credentials
SENDGRID_USERNAME: ''
SENDGRID_PASSWORD: ''

# Coverall creadentials
COVERALLS_TOKEN: ''

# From whom do I send the emails from
MAILER_FROM: ''

# Who's my host?
HOST: ''

# Redis server URL
REDISCLOUD_URL: ''

# S3 credentials
S3_BUCKET: ''
AWS_SECRET: ''
AWS_KEY: ''

# Google Maps credentials
GOOGLE_KEY: ''
21 changes: 21 additions & 0 deletions config/database.yml.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
development:
adapter: postgresql
encoding: unicode
host: localhost
database: reporte_ciudadano_development
pool: 5
password:

test:
adapter: postgresql
encoding: unicode
database: reporte_ciudadano_test
pool: 5
password:

production:
adapter: postgresql
encoding: unicode
database: reporte_ciudadano_production
pool: 5
password:

0 comments on commit a227a9b

Please sign in to comment.