Result Rest API
This is a REST APIs for the providing the bitdiver testframework. It uses a Arrango Database which can be configured through ENV variables.
Getting Started
git clone git@github.com:bitdiver/result-rest-api.git
cd result-rest-api
rm -rf .git && git init && npm init
npm install
EXPRESS_PORT=3000 ARANGO_HOSTNAME=localhost ARANGO_PORT=8529 ARANGO_DBNAME=_system ARANGO_USERNAME=root ARANGO_PASSWORD= npm run dev
EXPRESS_PORT=3000 ARANGO_HOSTNAME=localhost ARANGO_PORT=8529 ARANGO_DBNAME=_system ARANGO_USERNAME=root ARANGO_PASSWORD= npm start
Docker Support
cd result-rest-api
docker build -t bitdiver/result-rest-api .
docker run -p 8080:8080 bitdiver/result-rest-api