2014-12-05 16:52:33 +00:00
|
|
|
# Plugins to be loaded at launch
|
2017-03-21 15:32:30 +00:00
|
|
|
# CABOT_PLUGINS_ENABLED=cabot_alert_hipchat,cabot_alert_twilio,cabot_alert_email,cabot_alert_slack
|
2014-12-05 16:52:33 +00:00
|
|
|
|
2014-01-05 17:24:04 +00:00
|
|
|
DATABASE_URL=postgres://cabot:cabot@localhost:5432/index
|
2014-03-05 16:28:32 -06:00
|
|
|
DJANGO_SETTINGS_MODULE=cabot.settings
|
2014-01-05 17:24:04 +00:00
|
|
|
HIPCHAT_URL=https://api.hipchat.com/v1/rooms/message
|
|
|
|
LOG_FILE=/dev/null
|
|
|
|
PORT=5000
|
|
|
|
VENV=/home/ubuntu/venv
|
|
|
|
|
|
|
|
# You shouldn't need to change anything above this line
|
2014-07-14 10:47:33 +02:00
|
|
|
|
2016-04-01 01:01:20 -04:00
|
|
|
# Base path to include before generated URLs. If not defined, uses `/`
|
|
|
|
# URL_PREFIX=/
|
|
|
|
|
2014-07-14 10:47:33 +02:00
|
|
|
# Local time zone for this installation. Choices can be found here:
|
|
|
|
# http://en.wikipedia.org/wiki/List_of_tz_zones_by_name
|
2014-07-14 10:48:43 +02:00
|
|
|
TIME_ZONE=Etc/UTC
|
2014-07-14 10:47:33 +02:00
|
|
|
|
2014-01-05 17:24:04 +00:00
|
|
|
# Django admin email
|
|
|
|
ADMIN_EMAIL=you@example.com
|
2014-01-05 20:26:15 +00:00
|
|
|
CABOT_FROM_EMAIL=noreply@example.com
|
2014-01-05 17:24:04 +00:00
|
|
|
|
|
|
|
# URL of calendar to synchronise rota with
|
|
|
|
CALENDAR_ICAL_URL=http://www.google.com/calendar/ical/example.ics
|
|
|
|
|
|
|
|
# Django settings
|
2015-11-07 17:09:17 +00:00
|
|
|
CELERY_BROKER_URL=redis://:yourredispassword@localhost:6379/1
|
2014-01-05 17:24:04 +00:00
|
|
|
DJANGO_SECRET_KEY=2FL6ORhHwr5eX34pP9mMugnIOd3jzVuT45f7w430Mt5PnEwbcJgma0q8zUXNZ68A
|
|
|
|
|
2015-06-11 10:56:24 +01:00
|
|
|
# Hostname of your Graphite server instance (including trailing slash)
|
2014-01-05 17:24:04 +00:00
|
|
|
GRAPHITE_API=http://graphite.example.com/
|
|
|
|
GRAPHITE_USER=username
|
|
|
|
GRAPHITE_PASS=password
|
|
|
|
|
2014-08-07 09:56:22 +02:00
|
|
|
# From parameter for the graphite request. If not defined, by default take -10 minutes
|
2014-08-07 09:42:04 +02:00
|
|
|
# GRAPHITE_FROM=-10minute
|
|
|
|
|
2015-08-06 19:44:59 -07:00
|
|
|
# User-Agent string used for HTTP checks
|
|
|
|
HTTP_USER_AGENT=Cabot
|
|
|
|
|
2014-01-05 17:24:04 +00:00
|
|
|
# Hipchat integration
|
|
|
|
HIPCHAT_ALERT_ROOM=48052
|
|
|
|
HIPCHAT_API_KEY=your_hipchat_api_key
|
|
|
|
|
|
|
|
# Jenkins integration
|
|
|
|
JENKINS_API=https://jenkins.example.com/
|
|
|
|
JENKINS_USER=username
|
|
|
|
JENKINS_PASS=password
|
|
|
|
|
|
|
|
# SMTP settings
|
2017-03-02 11:26:13 +00:00
|
|
|
EMAIL_HOST=smtp.gmail.com
|
|
|
|
EMAIL_USER=********@gmail.com
|
|
|
|
EMAIL_PASSWORD=*********
|
|
|
|
EMAIL_PORT=587
|
|
|
|
EMAIL_USE_TLS=1
|
2014-01-05 17:24:04 +00:00
|
|
|
|
|
|
|
# Twilio integration for SMS and telephone alerts
|
|
|
|
TWILIO_ACCOUNT_SID=your_account_sid
|
|
|
|
TWILIO_AUTH_TOKEN=your_auth_token
|
|
|
|
TWILIO_OUTGOING_NUMBER=+14155551234
|
|
|
|
|
|
|
|
# Used for pointing links back in alerts etc.
|
2014-02-20 13:01:59 -08:00
|
|
|
WWW_HTTP_HOST=cabot.example.com
|
|
|
|
WWW_SCHEME=http
|
2015-05-10 21:40:39 -04:00
|
|
|
|
|
|
|
# Use for LDAP authentication
|
|
|
|
AUTH_LDAP=true
|
|
|
|
AUTH_LDAP_SERVER_URI=ldap://ldap.example.com
|
|
|
|
AUTH_LDAP_BIND_DN="cn=Manager,dc=example,dc=com"
|
|
|
|
AUTH_LDAP_BIND_PASSWORD=""
|
|
|
|
AUTH_LDAP_USER_SEARCH="ou=People,dc=example,dc=com"
|