Created
May 21, 2012 18:17
-
-
Save ralphbean/2763714 to your computer and use it in GitHub Desktop.
Instructions to check out the moksha demo dashboard with moksha>=0.8.0
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
| # Copy/paste the following into a term | |
| VENV=testing-moksha | |
| rmvirtualenv $VENV | |
| mkvirtualenv $VENV | |
| pip install mdemos.all | |
| # Grab some configs | |
| wget https://raw.github.com/ralphbean/mdemos.server/master/development.ini | |
| wget https://raw.github.com/ralphbean/mdemos.server/master/orbited.cfg | |
| # zsh is kinda dumb (or too smart?) and I have to do this to get stuff moving. | |
| deactivate | |
| workon $VENV | |
| # Start up the stuff. STOMP, by default. | |
| moksha-hub & | |
| orbited -c orbited.cfg & | |
| paster serve development.ini & | |
| # Just to check | |
| ps -ef | grep moksha |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment