Created
October 1, 2014 12:16
-
-
Save jqlblue/a6329a7649be16e92df4 to your computer and use it in GitHub Desktop.
development.env of cabot conf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
DEBUG=t | |
#DATABASE_URL=sqlite:///dev.db | |
DATABASE_URL=mysql://cabot:cabot@localhost:3306/cabot | |
DJANGO_SETTINGS_MODULE=cabot.settings | |
HIPCHAT_URL=https://api.hipchat.com/v1/rooms/message | |
LOG_FILE=/dev/null | |
PORT=5001 | |
# You shouldn't need to change anything above this line | |
# Local time zone for this installation. Choices can be found here: | |
# http://en.wikipedia.org/wiki/List_of_tz_zones_by_name | |
TIME_ZONE=Asia/Chongqing | |
# Django admin email | |
[email protected] | |
[email protected] | |
# URL of calendar to synchronise rota with | |
CALENDAR_ICAL_URL=http://www.google.com/calendar/ical/example.ics | |
# Django settings | |
CELERY_BROKER_URL=redis://localhost:6600/1 | |
DJANGO_SECRET_KEY=2FL6ORhHssffdseX34pP9mMugnIOd3jzVuT45f7w430Mt5PnEwbcJgma0q8zUXNZ68A | |
# Hostname of your Graphite server instance | |
GRAPHITE_API=http://localhost:8085/ | |
GRAPHITE_USER=admin | |
GRAPHITE_PASS=123456 | |
# From parameter for the graphite request. If not defined, by default take -10 minutes | |
GRAPHITE_FROM=-10minute | |
# 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 | |
SES_HOST='smtp.exmail.qq.com' | |
SES_USER='[email protected]' | |
SES_PASS='123456' | |
SES_PORT=465 | |
# 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. | |
WWW_HTTP_HOST=localhost | |
WWW_SCHEME=http |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment