You've already forked macports-gsoc2018-webapp
mirror of
https://github.com/macports/macports-gsoc2018-webapp.git
synced 2026-03-31 14:46:43 -07:00
23 lines
609 B
JSON
23 lines
609 B
JSON
{
|
|
"name": "Start on Heroku: Python",
|
|
"description": "A barebones Python app, which can easily be deployed to Heroku.",
|
|
"image": "heroku/python",
|
|
"repository": "https://github.com/heroku/python-getting-started",
|
|
"keywords": ["python", "django" ],
|
|
"addons": [ "heroku-postgresql" ],
|
|
"env": {
|
|
"SECRET_KEY": {
|
|
"description": "The secret key for the Django application.",
|
|
"generator": "secret"
|
|
}
|
|
},
|
|
"environments": {
|
|
"test": {
|
|
"scripts": {
|
|
"test-setup": "python manage.py collectstatic --noinput",
|
|
"test": "python manage.py test"
|
|
}
|
|
}
|
|
}
|
|
}
|