forked from arachnys/cabot
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from senzil/senzil
Senzil
- Loading branch information
Showing
28 changed files
with
393 additions
and
1,046 deletions.
There are no files selected for viewing
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
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
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
DEBUG=True | ||
PROD=False | ||
|
||
#################### DATABASE CONFIG | ||
#Check diferent options: https://github.com/kennethreitz/dj-database-url | ||
|
||
DATABASE_NAME=cabot | ||
DATABASE_USER=root | ||
DATABASE_PASSWORD=root | ||
DATABASE_HOST=db | ||
DATABASE_PORT=3306 | ||
|
||
#################### PLUGINS - DON'T LEAVE SPACE BETWEEN THEM, ONLY COMMACABOT_PLUGINS=cabot_alert_slack,cabot_check_http,cabot_check_network,cabot_alert_email | ||
CABOT_PLUGINS=cabot_alert_slack,cabot_check_http,cabot_check_network,cabot_alert_email | ||
|
||
#################### GENERAL CONFIG | ||
DJANGO_SETTINGS_MODULE=cabot.settings | ||
LOG_FILE=/dev/null | ||
PORT=8000 | ||
TIME_ZONE=America/Argentina/Buenos_Aires | ||
|
||
#################### CELERY CONFIG | ||
CELERY_BROKER_URL=redis://redis:6379/1 | ||
CELERY_RESULT_BACKEND=redis://redis:6379/1 | ||
CELERY_BEAT_SCHEDULER=django_celery_beat.schedulers:DatabaseScheduler | ||
|
||
#################### DJANGO MAIL CONFIG | ||
[email protected] | ||
[email protected] | ||
|
||
#################### EMAIL ALERT CONFIG | ||
EMAIL_HOST=in-v3.example.com | ||
EMAIL_USER=example | ||
EMAIL_PASSWORD=example | ||
|
||
#################### SLACK CONFIG | ||
SLACK_ALERT_CHANNEL=cabot | ||
SLACK_WEBHOOK_URL=https://discord.com/api/webhooks | ||
SLACK_ICON_URL=http://lorempixel.com/40/40/ | ||
|
||
# Typical SMTP port 587 or 25 configuration (with no SSL/TLS) | ||
EMAIL_PORT=587 | ||
EMAIL_USE_TLS=0 | ||
EMAIL_USE_SSL=0 | ||
|
||
# URL of calendar to synchronise rota with | ||
CALENDAR_ICAL_URL=http://www.google.com/calendar/ical/example.ics | ||
|
||
# Django settings | ||
DJANGO_SECRET_KEY=example | ||
|
||
# User-Agent string used for HTTP checks | ||
HTTP_USER_AGENT=Cabot | ||
|
||
# Used for pointing links back in alerts etc. | ||
WWW_HTTP_HOST=localhost | ||
WWW_SCHEME=http | ||
|
||
# Twilio integration for SMS and telephone alerts | ||
#TWILIO_ACCOUNT_SID=your_account_sid | ||
#TWILIO_AUTH_TOKEN=your_auth_token | ||
#TWILIO_OUTGOING_NUMBER=+14155551234 | ||
|
||
# Hipchat integration | ||
#HIPCHAT_ALERT_ROOM=room_name_or_id | ||
#HIPCHAT_API_KEY=your_hipchat_api_key |
Oops, something went wrong.