An open API service indexing awesome lists of open source software.

https://github.com/wmalarski/hotmusicreviews

POC service - learning .net core 5 + graphql
https://github.com/wmalarski/hotmusicreviews

csharp graphql hot-chocolate netcore5

Last synced: 2 days ago
JSON representation

POC service - learning .net core 5 + graphql

Awesome Lists containing this project

README

          

### Hot music reviews

appsettings.json

```json
{
"ReviewsDatabaseSettings": {
"ReviewsCollectionName": "Reviews",
"PerformersCollectionName": "Performers",
"AlbumsCollectionName": "Albums",
"ConnectionString": "",
"DatabaseName": "ReviewsDb"
},
"AuthSettings": {
"Authority": "",
"Audience": ""
},
"LastFmSettings": {
"ApiKey": "",
"ApiUrl": ""
},
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft": "Warning",
"Microsoft.Hosting.Lifetime": "Information"
}
},
"AllowedHosts": "*"
}
```