You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

34 lines
927 B

{
"name": "healthchecks",
"website": "https://github.com/healthchecks/healthchecks",
"keywords": ["heroku", "cron", "devops", "python", "monitoring", "cron-jobs"],
"image": "heroku/python",
"addons": [
"heroku-postgresql:hobby-dev",
"mailgun:starter",
"scheduler:standard"
],
"scripts": {
"postdeploy": "python manage.py migrate"
},
"env": {
"SITE_ROOT": {
"description": "Used to build fully qualified URLs for pings, and for use in emails and notifications. Enter your App Name defined above here.",
"value": "https://appname.herokuapp.com/"
},
"SITE_NAME": {
"description": "Used throughout the templates.",
"value": "My Monitoring Project"
},
"FROM_EMAIL": {
"description": "Email from address.",
"value": "[email protected]"
},
"SECRET_KEY": {
"generator": "secret"
},
"ON_HEROKU": {
"value": "yes"
}
}
}