Skip to content

Latest commit

 

History

History
64 lines (45 loc) · 1.08 KB

README.md

File metadata and controls

64 lines (45 loc) · 1.08 KB

Heroku buildpack for meteor

Usage

% heroku create --buildpack https://github.com/jordansissel/heroku-buildpack-meteor.git

Example

Create a sample app with 'meteor'

% meteor create --example todos
todos: created.

To run your new app:
   cd todos
   meteor

Put it in git.

% cd todos
% git init
Initialized empty Git repository in /tmp/a/todos/.git/
% git add .
% git commit -m "Sample todos app!"

Create your heroku app

% heroku create --buildpack https://github.com/jordansissel/heroku-buildpack-meteor.git

Or if your Heroku app already exists

% heroku buildpacks:set https://github.com/jordansissel/heroku-buildpack-meteor.git

Configure your plugins & settings

% heroku addons:create mongolab:sandbox
% heroku config:add MONGO_URL=<insert_value_of_MONGOLAB_URI_here>
% heroku config:add ROOT_URL=<insert_url_created_above_here>

Optional step, if you are using a settings.json file to configure your Meteor application

% heroku config:add METEOR_SETTINGS="$(cat settings.json)"

Deploy it

% git push heroku

Enjoy!