Skip to content

Commit

Permalink
use stripe test keys for now
Browse files Browse the repository at this point in the history
  • Loading branch information
beingmattlevy committed May 13, 2024
1 parent a43f319 commit f31d3dd
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions config/environments/production.rb
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,9 @@
}

config.stripe = {
secret_api_key: Rails.application.credentials.production.dig(:stripe, :secret_api_key),
publishable_api_key: Rails.application.credentials.production.dig(:stripe, :publishable_api_key)
secret_api_key: Rails.application.credentials.development.dig(:stripe, :secret_api_key),
publishable_api_key: Rails.application.credentials.development.dig(:stripe, :publishable_api_key)
# secret_api_key: Rails.application.credentials.production.dig(:stripe, :secret_api_key),
# publishable_api_key: Rails.application.credentials.production.dig(:stripe, :publishable_api_key)
}
end

0 comments on commit f31d3dd

Please sign in to comment.