schneidmaster / gitreports.com

Git Reports is a free service that lets you set up a stable URL for anonymous users to submit bugs and other Issues to your GitHub repositories.
MIT License
134 stars 26 forks source link

Fixed Readme #109

Closed hd719 closed 7 years ago

hd719 commented 7 years ago

Hello

So I found this small typo the readme:

README.md

  GITHUB_CLIENT_ID=youridhere
  GITHUB_CLIENT_SECRET=yoursecrethere
  GITHUB_CALLBACK_URL=http://yourdomain.com/github_callback
  SECRET_TOKEN=some_token # should be at least 128 random chars

SECRET_TOKEN should be changed to SECRET_KEY_TOKEN because in the file

secret_token.rb

GitReports::Application.config.secret_key_base = ENV['SECRET_KEY_TOKEN']

ENV is set to SECRET_KEY_TOKEN.

-Thank you.

schneidmaster commented 7 years ago

Hey, thanks for this. This made me realize that I neglected to update the secrets formatting the last time I upgraded rails, so I fixed here which makes this README line unnecessary.