├── LICENSE ├── Procfile ├── README.md ├── app.json ├── bin ├── compile ├── detect └── release ├── default-config.json └── start.sh /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mattermost-heroku/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mattermost-heroku/HEAD/Procfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mattermost-heroku/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mattermost-heroku/HEAD/app.json -------------------------------------------------------------------------------- /bin/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mattermost-heroku/HEAD/bin/compile -------------------------------------------------------------------------------- /bin/detect: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | echo "Mattermost" 4 | 5 | exit 0 6 | -------------------------------------------------------------------------------- /bin/release: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cat << EOF 4 | --- 5 | addons: 6 | - heroku-postgresql:hobby-dev 7 | EOF 8 | -------------------------------------------------------------------------------- /default-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mattermost-heroku/HEAD/default-config.json -------------------------------------------------------------------------------- /start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mattermost-heroku/HEAD/start.sh --------------------------------------------------------------------------------