A heroku buildpack for Meteor v1+, designed to be as simple and readable as possible.
To use this with your meteor app and heroku:
-
Set up your app to deploy to heroku with git.
-
Set your buildpack to the latest version from the registry:
heroku buildpacks:set admithub/meteor-horse -
Add the MongoLab addon:
heroku addons:create mongolab -
Set the
ROOT_URLenvironment variable. This is required for bundling and running the app. Either define it explicitly, or enable the Dyno Metadata labs addon to default tohttps://<appname>.herokuapp.com.heroku config:set ROOT_URL="https://<appname>.herokuapp.com" # or other URL
Once that's done, you can deploy your app using this build pack any time by pushing to heroku:
git push heroku master
The following are some important environment variables for bundling and running your meteor app on heroku. Depending on your settings, you may need to override these on heroku. See heroku's documentation for how to set these.
ROOT_URL: The root URL for your app, needed for bundling as well as running. If you enable the Dyno Metadata labs addon andROOT_URLis undefined, it will default tohttps://<appname>.herokuapp.com).MONGO_URL: The URL to mongodb. If not defined, it will default the value ofMONGODB_URI,MONGOLAB_URI, orMONGOHQ_URL(in order). If you don't use mongolab as a regular addon (and none of the fallbacks are defined), you'll need to set this.METEOR_APP_DIR: The relative path to the root of your meteor app within your git repository (i.e. the path to the directory that contains.meteor/). The buildpack will look in the root of your repository andapp/subdirectory; if you put your app anywhere else (likesrc/), define this variable to tell the buildpack where to look.BUILDPACK_PRELAUNCH_METEOR: If your app uses packages that need to compile their assets on first run, you may need meteor to launch prior to bundling. If this applies for you, defineBUILDPACK_PRELAUNCH_METEOR=1. Reference issue.BUILDPACK_VERBOSE: SetBUILDPACK_VERBOSE=1to enable verbose bash debugging during slug compilation. Only takes effect after the environment variables have been loaded.BUILDPACK_CLEAR_CACHE: This buildpack stores the meteor installation in the CACHE_DIR to speed up subsequent builds. SetBUILDPACK_CLEAR_CACHE=1to clear this cache on startup and after build is done.BUILD_OPTIONS: Set to any additional options you'd like to add to the invocation ofmeteor build, for example--debugor--allow-incompatible-update.NODEJS_PARAMS: additional parameters for runningnodebinary. This can be used eg. for adjusting garbage collector settings by putting--optimize_for_size --max_old_space_size=460 --gc_interval=100here
The basic buildpack should function correctly for any normal-ish meteor app,
with or without npm-container. For extra steps needed for your particular build,
just add shell scripts to the extra folder and they will get sourced into the
build.
Extras included in this branch:
mongo_url.sh: IfMONGO_URLis empty, set it to the value ofMONGODB_URI,MONGOLAB_URI, orMONGOHQ_URL(in order).root_url.sh: IfROOT_URLis empty andHEROKU_APP_NAMEis available, setROOT_URLtohttps://$HEROKU_APP_NAME.herokuapp.com
This buildpack creates a directory .meteor/heroku_build ($COMPILE_DIR)
inside the app checkout, and puts all the binaries and the built app in there.
So it ends up having the usual unixy bin/, lib/, share etc
subdirectories. Those directories are added to $PATH and
$LD_LIBRARY_PATH appropriately.
So $COMPILE_DIR/bin etc are great places to put any extra binaries or stuff
if you need to in custom extras.
The admithub/meteor-horse buildpack from the Heroku Registry contains the latest stable version of the buildpack. If you'd like to use the latest buildpack code from this Github repository, you can set your buildpack to the Github URL:
heroku buildpacks:set https://github.com/AdmitHub/meteor-buildpack-horse
Please help us add tips and tricks to the wiki for further help, like usage with Dokku or other environments.
There are a gazillian forks and branches of various buildpacks remixing the words "heroku", "buildpack", and "meteor", many of which are abandoned or outdated or broken, and it's really hard to keep them straight.
So this one is the horse one.
README image credit: wikicommons contributor Arsdelicata

