diff --git a/config/secrets.yml.example b/config/secrets.yml.example index 1d1312ea6..fc65136d1 100644 --- a/config/secrets.yml.example +++ b/config/secrets.yml.example @@ -1,43 +1,38 @@ -# Be sure to restart your server when you modify this file. - -# Your secret key is used for verifying the integrity of signed cookies. -# If you change this key, all old signed cookies will become invalid! - -# Make sure the secret is at least 30 characters and all random, -# no regular words or you'll be exposed to dictionary attacks. -# You can use `rake secret` to generate a secure secret key. - -# Make sure the secrets in this file are kept private -# if you're sharing your code publicly. - default: &default + secret_key_base: "56792feef405a59b18ea7db57b4777e855103882b926413d4afdfb8c0ea8aa86ea6649da4e729c5f5ae324c0ab9338f789174cf48c544173bc18fdc3b14262e4" development: - secret_key_base: 56792feef405a59b18ea7db57b4777e855103882b926413d4afdfb8c0ea8aa86ea6649da4e729c5f5ae324c0ab9338f789174cf48c544173bc18fdc3b14262e4 - twitter_key: AAAA - twitter_secret: BBBB - facebook_key: AAAA - facebook_secret: BBBB - google_oauth2_key: AAAA - google_oauth2_secret: BBBB <<: *default test: - secret_key_base: 4d5adf961ddd27aef19622d6c0b3234d555f9ee003f022b1f829c92bbe33aaee907be7feb67bd54c14a1a32512fa968565ad405971fbc41bd0797af73c26a796 - twitter_key: AAAA - twitter_secret: BBBB - facebook_key: AAAA - facebook_secret: BBBB - google_oauth2_key: AAAA - google_oauth2_secret: BBBB <<: *default -production: - secret_key_base: <%= ENV["SECRET_KEY_BASE"] %> - twitter_key: <%= ENV["TWITTER_KEY"] %> - twitter_secret: <%= ENV["TWITTER_SECRET"] %> - facebook_key: <%= ENV["FACEBOOK_KEY"] %> - facebook_secret: <%= ENV["FACEBOOK_SECRET"] %> - google_oauth2_key: <%= ENV["GOOGLE_KEY"] %> - google_oauth2_secret: <%= ENV["GOOGLE_SECRET"] %> +staging: <<: *default + +production: &production + secret_key_base: "817232feef405a59b18ea7db57b4777e855103882b926413d4afdfb8c0ea8aa86ea6649da4e729c5f5ae324c0ab9338f789174cf48c544173bc18fdc3b14262e4" + + census_api_end_point: "" + census_api_institution_code: "" + census_api_portal_name: "" + census_api_user_code: "" + + sms_end_point: "" + sms_username: "" + sms_password: "" + + http_basic_username: "" + http_basic_password: "" + + twitter_key: "" + twitter_secret: "" + facebook_key: "" + facebook_secret: "" + google_oauth2_key: "" + google_oauth2_secret: "" + + rollbar_server_token: "" + +preproduction: + <<: *production \ No newline at end of file