Commit 609af31a08693a986bf43e1e4fc240d631d67043

Authored by Jared Pace
1 parent 22eb1c6f
Exists in master and in 1 other branch production

Move config.yml to config.example.yml

.gitignore
... ... @@ -2,4 +2,5 @@
2 2 db/*.sqlite3
3 3 log/*.log
4 4 tmp/**/*
  5 +config/config.yml
5 6 config/deploy.rb
6 7 \ No newline at end of file
... ...
config/config.example.yml 0 → 100644
... ... @@ -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
... ...
config/config.yml
... ... @@ -1,4 +0,0 @@
1   -host: errbit.example.com
2   -
3   -email_at_notices: [1, 10, 100]
4   -email_from: errbit@example.com
5 0 \ No newline at end of file