Skip to content

Instantly share code, notes, and snippets.

@rcy
Created June 23, 2013 10:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save rcy/5844525 to your computer and use it in GitHub Desktop.
Save rcy/5844525 to your computer and use it in GitHub Desktop.
Makefile to bundle meteor app to run in production
prod:
rm -rf ./bundle
mrt bundle bundle.tgz > /dev/null
tar -xzf bundle.tgz
rm -r bundle/server/node_modules/fibers
cd bundle/server && npm install fibers@1.0.0
clean:
rm -f ./bundle.tgz
rm -rf ./bundle
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment