├── LICENSE.txt ├── Procfile ├── README.md ├── app.json ├── bin ├── compile ├── detect └── release ├── config └── config-heroku-template.json ├── lib └── envsubst └── start.sh /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommyvn/mattermost-heroku/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: ./start.sh 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommyvn/mattermost-heroku/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommyvn/mattermost-heroku/HEAD/app.json -------------------------------------------------------------------------------- /bin/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommyvn/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 | -------------------------------------------------------------------------------- /config/config-heroku-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommyvn/mattermost-heroku/HEAD/config/config-heroku-template.json -------------------------------------------------------------------------------- /lib/envsubst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommyvn/mattermost-heroku/HEAD/lib/envsubst -------------------------------------------------------------------------------- /start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommyvn/mattermost-heroku/HEAD/start.sh --------------------------------------------------------------------------------