Created
June 23, 2013 10:22
-
-
Save rcy/5844525 to your computer and use it in GitHub Desktop.
Makefile to bundle meteor app to run in production
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 [email protected] | |
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