Commit 609af31a08693a986bf43e1e4fc240d631d67043
1 parent
22eb1c6f
Exists in
master
and in
1 other branch
Move config.yml to config.example.yml
Showing
3 changed files
with
21 additions
and
4 deletions
Show diff stats
.gitignore
| ... | ... | @@ -0,0 +1,20 @@ |
| 1 | +# Errbit Config | |
| 2 | +# ============= | |
| 3 | +# | |
| 4 | +# Copy this file to config/config.yml and | |
| 5 | +# modify it accordingly. This file will automatically | |
| 6 | +# be copied to shared/config on the server when | |
| 7 | +# `cap deploy:setup` is ran the first time. Be sure | |
| 8 | +# to place production specific settings there | |
| 9 | + | |
| 10 | +# The host of your errbit server | |
| 11 | +host: errbit.example.com | |
| 12 | + | |
| 13 | +# The email address which email notifications | |
| 14 | +# will be sent from. | |
| 15 | +email_from: errbit@example.com | |
| 16 | + | |
| 17 | +# Configure when emails are sent for an error. | |
| 18 | +# [1,3,7] = 1st, 3rd, and 7th occurence triggers | |
| 19 | +# an email notification. | |
| 20 | +email_at_notices: [1, 10, 100] | |
| 0 | 21 | \ No newline at end of file | ... | ... |