From 16d0342b1faf4c961ec2c7e82163e14e690b165b Mon Sep 17 00:00:00 2001 From: Steven Miers Date: Wed, 12 Nov 2014 11:52:52 -0600 Subject: [PATCH] Recurly subdomains for development and production. --- web/config/environments/development.rb | 2 ++ web/config/environments/production.rb | 2 ++ web/config/environments/test.rb | 2 +- 3 files changed, 5 insertions(+), 1 deletion(-) diff --git a/web/config/environments/development.rb b/web/config/environments/development.rb index fd950b0b3..e7868bb34 100644 --- a/web/config/environments/development.rb +++ b/web/config/environments/development.rb @@ -88,4 +88,6 @@ SampleApp::Application.configure do # For product = JamKazamDev config.youtube_developer_key = "AI39si5bPqiNc5GQHscWJh9Wl1WTAr9aZqr_YncUvaR7Kz0rgPdBVWVubHZ94xZ3KLIBqtE9mu3VZe-UpMU80QxXoC66kBNp7A" config.youtube_app_name = "JamKazamDev" + + config.recurly_subdomain = 'jamkazam-development' end diff --git a/web/config/environments/production.rb b/web/config/environments/production.rb index 3685fe7dc..c1fdf81ec 100644 --- a/web/config/environments/production.rb +++ b/web/config/environments/production.rb @@ -92,4 +92,6 @@ SampleApp::Application.configure do config.twitter_app_id = 'RHv0NJod7NLCXH6Kv29LWw' # staging config.twitter_app_secret = 'ZjLl7rtagTozYDuKKyZNtaTQ4aGFmZPVCO8EoUJmg' # staging + + config.recurly_subdomain = 'jamkazam' end diff --git a/web/config/environments/test.rb b/web/config/environments/test.rb index 3f719d71a..f692a10c7 100644 --- a/web/config/environments/test.rb +++ b/web/config/environments/test.rb @@ -97,6 +97,6 @@ SampleApp::Application.configure do config.recurly_private_api_key = '4631527f203b41848523125b3ae51341' # Use Public Keys to identify your site when using Recurly.js. See https://docs.recurly.com/js/#include to learn more. config.recurly_public_api_key = 'sc-s6G2OA80Rwyvsb1RmS3mAE' - config.recurly_subdomain = 'jamkazam-test' + config.recurly_subdomain = 'jamkazam-test' end