This is an app to match ping-pong players with each other. It's currently an
API only, so you have to use curl to interact with it.
It has an acceptance test suite you might like to look at.
Running on Pivotal Web Services
Log in.
cf login -a https://api.run.pivotal.ioTarget your org / space.
cf target -o myorg -s myspaceSign up for a rediscloud instance.
cf create-service rediscloud 25mb baby-redisBuild the app.
./gradlew distZipPush the app. Its manifest assumes you called your Redis instance 'baby-redis'.
cf push -n mysubdomainExport the test host
export HOST=http://mysubdomain.cfapps.ioNow follow the interaction instructions.
The following assumes you have a working, recent version of Groovy.
Install and start redis:
brew install redis
redis-serverIn another terminal, start the application server:
./gradlew runExport the test host
export HOST=http://localhost:3000Now follow the interaction instructions.