Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
themeMidnight
languageruby
titleAn example config/secrets.yml
development: &development
  calendarId: 'your calendar ID here'
  service_account_email: 'xxx@developer.gserviceaccount.com'
  impersonate_user_email: 'replaceWithEmailYouWantToImpersonate@email.com'
  key_file: <%= "#{ENV['HOME']}/.eventr/<your key here>" %>
  key_secret: 'private-key-secret'

test:
  <<: *development

integration:
  <<: *development

production:
  <<: *development

...