Files
osem/config/secrets.yml.example
2014-06-20 20:13:56 +03:00

42 lines
1.1 KiB
Plaintext

defaults: &defaults
# You can generate secret keys with 'rake secret'
# For rails cookies
secret_key_base: '12345'
# For devise login tokens
devise_secret_key: '12345'
# Your errbit API key
# errbit_key: '12345'
# Leave the variables' names empty, unless you use the providers, in which case you need to
# register your applicaton and add the actual keys.
# If you add more providers, keep the format of the variables: provider_key, provider_secret
# Register your appllication with Google from https://code.google.com/apis/console#:access
google_key: ''
google_secret: ''
# Register your application with Facebook from https://developers.facebook.com/
facebook_key: ''
facebook_secret: ''
# Developers do not need to register their application for novell account to work.
# You must, however, leave the sample data there, for the login option to appear.
novell_key: 'sample data'
novell_secret: 'sample data'
# If you add more providers that do not require a key, you still have to create the 2 variables with sample data
development:
<<: *defaults
test:
<<: *defaults
production:
<<: *defaults