├── .github └── ISSUE_TEMPLATE.md ├── .gitignore ├── LICENSE.txt ├── README.md ├── bin ├── compile ├── detect └── release └── extra ├── mongo_url.sh └── root_url.sh /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdmitHub/meteor-buildpack-horse/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Mac OS X Garbage 2 | .DS_Store 3 | 4 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdmitHub/meteor-buildpack-horse/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdmitHub/meteor-buildpack-horse/HEAD/README.md -------------------------------------------------------------------------------- /bin/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdmitHub/meteor-buildpack-horse/HEAD/bin/compile -------------------------------------------------------------------------------- /bin/detect: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | echo "Node.js" && exit 0 4 | -------------------------------------------------------------------------------- /bin/release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdmitHub/meteor-buildpack-horse/HEAD/bin/release -------------------------------------------------------------------------------- /extra/mongo_url.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdmitHub/meteor-buildpack-horse/HEAD/extra/mongo_url.sh -------------------------------------------------------------------------------- /extra/root_url.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdmitHub/meteor-buildpack-horse/HEAD/extra/root_url.sh --------------------------------------------------------------------------------