osem-fcy/config/secrets.yml.example

41 lines
1.1 KiB
Text
Raw Normal View History

defaults: &defaults
# You can generate secret keys with 'rake secret'
# For rails cookies
secret_key_base: '12345'
# For devise login tokens
2014-06-20 15:26:15 +03:00
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.
2014-06-20 15:26:15 +03:00
# 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 suse account to work.
# You must, however, leave the sample data there, for the login option to appear.
suse_key: 'sample data'
suse_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
2014-06-20 15:26:15 +03:00
development:
<<: *defaults
test:
<<: *defaults
production:
<<: *defaults