https://github.com/dzimchuk/book-fast-api
https://github.com/dzimchuk/book-fast-api
Last synced: 20 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/dzimchuk/book-fast-api
- Owner: dzimchuk
- License: mit
- Created: 2016-04-04T13:10:49.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2016-08-10T18:25:49.000Z (almost 9 years ago)
- Last Synced: 2025-04-06T02:07:04.031Z (about 1 month ago)
- Language: C#
- Size: 104 KB
- Stars: 5
- Watchers: 2
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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.