Microservices structure
We want to build a geolocalization application and we chose to create it like a game so that it is more fun and easier to understand. Feel free to adapt the example to any other idea, for example, a tourism application with geolocalization embedded.
Our game will use geolocalization to find different secrets all around the world (or in a specific geographic area if you want a smaller map). The backend system will generate new secrets and place them randomly on our map, allowing the users to explore their environment to find them. As a player of our game, you will collect the different secrets and store them in your wallet, which is where you will find more information about each of them.
To make our game more fun, we will have a battle engine. While you are discovering our secret world, you can battle against other players to steal his/her secrets. The battle engine will be a simple one--just throw a dice and the highest score wins the battle.
A project of this...