// assumption: you've installed Pomelo
// create a new project $: pomelo init ./HelloAdmin // note: just go with the default websocket
// install dependencies $: cd HelloAdmin $: sh install.sh
// fire-up the game servers $: pomelo start
// confirm that the server processes are running $: pomelo list
// fire-up the test web server $: cd ../web-server $: node app // in browser, go to 127.0.0.1:3001 and see your hard work in action
// note: stop the game server with 'pomelo stop' // note: stop the web server with a ctrl-c
// add an admin console alongside the web server $: cd ../../HelloAdmin $: git clone https://github.com/NetEase/pomelo-admin-web.git $: mv pomelo-admin-web admin-server
// install depencies $: cd admin-server $: npm install
// fire-up the admin web server $: node app // in browser, go to 127.0.0.1:7001 and see your hard work in action















