Commit 608402596ee75851e5166f5185843576f7e295e9
1 parent
20f6f0af
Exists in
master
and in
1 other branch
Added more Github OAuth instructions to config.example.yml [ci skip]
Showing
1 changed file
with
9 additions
and
3 deletions
Show diff stats
config/config.example.yml
... | ... | @@ -39,7 +39,7 @@ user_has_username: false |
39 | 39 | # but you want to leave a short comment. |
40 | 40 | allow_comments_with_issue_tracker: true |
41 | 41 | |
42 | -# Setup your deploy options | |
42 | +# Setup your deploy options for capistrano. | |
43 | 43 | deployment: |
44 | 44 | hosts: |
45 | 45 | web: errbit.example.com |
... | ... | @@ -50,8 +50,14 @@ deployment: |
50 | 50 | deploy_to: /var/www/apps/errbit |
51 | 51 | |
52 | 52 | # Github OAuth configuration |
53 | -# If you want to use authtiaction through Github you should provide Client ID and Secret keys. | |
54 | -# You can register a new application here https://github.com/settings/applications | |
53 | +# If you want to allow authentication via Github, you will need to register | |
54 | +# your app at: https://github.com/settings/applications | |
55 | +# If you hosted Errbit at errbit.example.com, you would fill in: | |
56 | +# | |
57 | +# URL: http://errbit.example.com/ | |
58 | +# Callback URL: http://errbit.example.com/users/auth/github | |
59 | +# | |
60 | +# After you have registered your app, copy your Client ID and Secret key below. | |
55 | 61 | github_authentication: false |
56 | 62 | github_client_id: 'GITHUB_CLIENT_ID' |
57 | 63 | github_secret: 'GITHUB_SECRET' | ... | ... |