Microservice that manages the content for the mobile app.
For testing purposes, install & run Event Store and MongoDB on your local machine. Steps on Windows:
- Download Event Store
- Run with
EventStore.ClusterNode.exe --db ./db --log ./logs
- For further information, see documentation: Connecting to a Server, especially section "URIs"
- Run with
- Download MongoDB
- Run with
mongod.exe
- Default database path:
C:\data\db
(if installed on drive C:) - For further information, see documentation: Install on Windows and The Mongo Shell
- Run with
- Launch the app
- via Visual Studio: Open the solution (*.sln) and run the app (F5)
- via Terminal: Execute
dotnet run
from the project folder containingHiP-DataStore.csproj
The app is preconfigured to run on dev machines without any manual configuration (using the event store and Mongo database on localhost
). See appsettings.json for a list of configuration fields and their default values.
To be able to provide test values for local development, make a copy of the appsettings.json and rename it to appsettings.Development.json
(see here for more information)