RailsApps / rails_apps_composer

A gem with recipes to create Rails application templates for Rails starter apps.
http://railsapps.github.io/rails_apps_composer/
1.42k stars 306 forks source link

.env omniauth config file is not correct #335

Closed Dagnan closed 9 years ago

Dagnan commented 9 years ago

This was the content generated:

# Add account credentials and API keys here.
# This file should be listed in .gitignore to keep your settings secret!
# Each entry sets a local environment variable.
# For example, setting:
# GMAIL_USERNAME=Your_Gmail_Username
# makes 'Your_Gmail_Username' available as ENV["GMAIL_USERNAME"]

OMNIAUTH_PROVIDER_KEY: Your_Provider_Key
OMNIAUTH_PROVIDER_SECRET: Your_Provider_Secret

It should be (note the = instead of :)

# Add account credentials and API keys here.
# This file should be listed in .gitignore to keep your settings secret!
# Each entry sets a local environment variable.
# For example, setting:
# GMAIL_USERNAME=Your_Gmail_Username
# makes 'Your_Gmail_Username' available as ENV["GMAIL_USERNAME"]

OMNIAUTH_PROVIDER_KEY=Your_Provider_Key
OMNIAUTH_PROVIDER_SECRET=Your_Provider_Secret
DanielKehoe commented 9 years ago

Thank you for pointing out the error.

Dagnan commented 9 years ago

Thanks for fixing it :+1: