This service was created as a result of the OpenReq project funded by the European Union Horizon 2020 Research and Innovation programme under grant agreement No 732463.
The ri-storage-app microservice represents an interface to a database persisting all JSON objects related to Google Play (Android app store) data.
-
Gorilla Mux (→ https://github.com/gorilla/mux)
-
MongoDB (→ https://www.mongodb.com/)
ri-storage-app requires a installed distribution of Go https://golang.org/doc/install as well as a Mongo database running on a local or a remote host. The IP adress of the Mongo database is passed as a Docker environment variable with the key MONGO_IP.
Run the following commands to start the microservice:
-
docker build -t ri-storage-app .
-
docker run -e "MONGO_IP=<mydbip>" -p 9681:9681 ri-storage-app
The IP adresss of the Mongo Database in which to store Google Play (Android app store) data is passed through the environment variable MONGO_IP. <mydbip> should be set by the IP adress of your database.
A full description of the the microservice can be found in the following swagger documentation:
The API is documented by using Swagger2:
See OpenReq project contribution Guidlines