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

https://github.com/dzimchuk/book-fast-api


https://github.com/dzimchuk/book-fast-api

Last synced: 20 days ago
JSON representation

Awesome Lists containing this project

README

        

# book-fast-api

Multitenant facility management and accommodation booking API app protected by Azure AD.

## Configuration

Use environment variables, user-secrets or appsettings.json to configure the project.

```
"Data": {
"DefaultConnection": {
"ConnectionString": ""
}
},
"Authentication": {
"AzureAd": {
"Audience": "",
"Instance": "",
"ValidIssuers": "Comma separated list of tenant identifiers, e.g. https://sts.windows.net/490789ec-b183-4ba5-97cf-e69ec8870130/,https://sts.windows.net/f418e7eb-0dcd-40be-9b81-c58c87c57d9a/",
"B2C": {
"Instance": "",
"TenantId": "",
"Audience": "",
"Policy": ""
}
}
},
"Azure": {
"Storage": {
"ConnectionString": ""
},
"Search": {
"QueryKey": "",
"AdminKey": "",
"ServiceName": "",
"IndexName": ""
}
}
```

## Database setup

BookFast.Data project contains the necessary EF migrations to provision the database.