We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Right now we add a line for the App ID and Secrets like this and ask users to figure out the addition of those values.
config.omniauth :google_oauth2, "APP_ID", "APP_SECRET"
Instead we should take these values from Rails credentials or ENV variables; whatever users prefer.
You can see a similar implementation for this in sentry generator:
boring_generators/lib/generators/boring/sentry/install/install_generator.rb
Line 35 in 68133b1
Also need to add tests for this change.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Right now we add a line for the App ID and Secrets like this and ask users to figure out the addition of those values.
config.omniauth :google_oauth2, "APP_ID", "APP_SECRET"
Instead we should take these values from Rails credentials or ENV variables; whatever users prefer.
You can see a similar implementation for this in sentry generator:
boring_generators/lib/generators/boring/sentry/install/install_generator.rb
Line 35 in 68133b1
Also need to add tests for this change.
The text was updated successfully, but these errors were encountered: