Created
October 2, 2012 14:17
-
-
Save amackera/3819483 to your computer and use it in GitHub Desktop.
Foreman Procfile and supporting scripts
This file contains hidden or 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
#!/bin/bash | |
sleep 10 | |
pushd /Users/amackera/workspace/Cottontail/socket/ | |
node server.js | |
popd |
This file contains hidden or 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
#!/bin/bash | |
pushd /Users/amackera/workspace/PingPong/ | |
mongod -f mongodb.conf | |
popd |
This file contains hidden or 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
#!/bin/bash | |
wait 5 | |
pushd /Users/amackera/workspace/PingPong/ | |
node app.js | |
popd |
This file contains hidden or 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
rabbitmq: rabbitmq-server | |
pushy: pushy | |
mongodb: mongodb | |
pingpong: pingpong | |
cottontail: cottontail |
This file contains hidden or 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
#!/bin/bash | |
pushd /Users/amackera/workspace/PushyMonocle/ | |
node server.js | |
popd |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment