development.env.example
1 # Plugins to be loaded at launch 2 # CABOT_PLUGINS_ENABLED=cabot_alert_hipchat,cabot_alert_twilio,cabot_alert_email,cabot_alert_slack 3 4 DEBUG=t 5 DATABASE_URL=postgres://postgres@db:5432/postgres 6 DJANGO_SETTINGS_MODULE=cabot.settings 7 LOG_FILE=/dev/null 8 PORT=5001 9 10 # You shouldn't need to change anything above this line 11 12 # Base path to include before generated URLs. If not defined, uses `/` 13 # URL_PREFIX=/ 14 15 # Local time zone for this installation. Choices can be found here: 16 # http://en.wikipedia.org/wiki/List_of_tz_zones_by_name 17 TIME_ZONE=Etc/UTC 18 19 # Django admin email 20 ADMIN_EMAIL=you@example.com 21 CABOT_FROM_EMAIL=cabot@example.com 22 23 # URL of calendar to synchronise rota with 24 CALENDAR_ICAL_URL=http://www.google.com/calendar/ical/example.ics 25 26 # Django settings 27 CELERY_BROKER_URL=redis://redis:6379/1 28 DJANGO_SECRET_KEY=2FL6ORhHwr5eX34pP9mMugnIOd3jzVuT45f7w430Mt5PnEwbcJgma0q8zUXNZ68A 29 30 # Hostname of your Graphite server instance 31 GRAPHITE_API=http://graphite.example.com/ 32 GRAPHITE_USER=username 33 GRAPHITE_PASS=password 34 35 # From parameter for the graphite request. If not defined, by default take -10 minutes 36 # GRAPHITE_FROM=-10minute 37 38 # User-Agent string used for HTTP checks 39 HTTP_USER_AGENT=Cabot 40 41 # Hipchat integration 42 HIPCHAT_ALERT_ROOM=room_name_or_id 43 HIPCHAT_API_KEY=your_hipchat_api_key 44 45 # Jenkins integration 46 JENKINS_API=https://jenkins.example.com/ 47 JENKINS_USER=username 48 JENKINS_PASS=password 49 50 # SMTP settings 51 EMAIL_BACKEND=django.core.mail.backends.console.EmailBackend 52 53 # Twilio integration for SMS and telephone alerts 54 TWILIO_ACCOUNT_SID=your_account_sid 55 TWILIO_AUTH_TOKEN=your_auth_token 56 TWILIO_OUTGOING_NUMBER=+14155551234 57 58 # Used for pointing links back in alerts etc. 59 WWW_HTTP_HOST=localhost 60 WWW_SCHEME=http 61 62 # Use for LDAP authentication 63 # AUTH_LDAP=true 64 # AUTH_LDAP_SERVER_URI=ldap://ldap.example.com 65 # AUTH_LDAP_BIND_DN="cn=Manager,dc=example,dc=com" 66 # AUTH_LDAP_BIND_PASSWORD="" 67 # AUTH_LDAP_USER_FILTER="(uid=%(user)s)" 68 # AUTH_LDAP_USER_SEARCH="ou=People,dc=example,dc=com" 69 70 # Use Github Organization for Authentication 71 # LOGIN_URL=/login/github-org/ 72 # AUTH_GITHUB_ORG=True 73 # AUTH_GITHUB_ORG_CLIENT_ID=2l34k5j43tb46l2kj234 74 # AUTH_GITHUB_ORG_CLIENT_SECRET=23l4k5j43l6k546lk5n4kl64j2j3l5k4jjlkj2345 75 # AUTH_GITHUB_ORG_NAME=myorganization 76 77 # Use Github Enterprise Organization for Authentication 78 # LOGIN_URL=/login/github-enterprise-org/ 79 # GITHUB_ENTERPRISE_ORG_AUTH=True 80 # GITHUB_ENTERPRISE_ORG_URL=https://mygithubenterprise.com/ 81 # GITHUB_ENTERPRISE_ORG_API_URL=https://mygithubenterprise.com/api/v3/ 82 # GITHUB_ENTERPRISE_ORG_KEY=alskdjflkj5lk123j345l3 83 # GITHUB_ENTERPRISE_ORG_SECRET=alskjdflkasjdflqkj5lkntrk13j45lk3451453245 84 # GITHUB_ENTERPRISE_ORG_NAME=myorganization