forked from RailsApps/rails-stripe-membership-saas
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Allow users to set config variables in development.yml file
- Loading branch information
Showing
4 changed files
with
25 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# Rename this file to local_env.yml | ||
# Add account settings and API keys here. | ||
# This file is in .gitignore to keep your settings secret! | ||
# Each entry gets set as a local environment variable. | ||
# This file overrides ENV variables in the Unix shell. | ||
# For example, setting: | ||
# GMAIL_USERNAME: 'Your_Gmail_Username' | ||
# makes 'Your_Gmail_Username' available as ENV["GMAIL_USERNAME"] | ||
STRIPE_API_KEY: 'Your_Stripe_API_key' | ||
STRIPE_PUBLIC_KEY: 'Your_Stripe_Public_Key' | ||
GMAIL_USERNAME: 'Your_Gmail_Username' | ||
GMAIL_PASSWORD: 'Your_Gmail_Password' |