https://github.com/pakrym/kudutest
https://github.com/pakrym/kudutest
Last synced: over 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/pakrym/kudutest
- Owner: pakrym
- License: mit
- Created: 2016-07-11T16:29:24.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2017-06-29T20:31:02.000Z (about 9 years ago)
- Last Synced: 2025-02-15T11:26:40.573Z (over 1 year ago)
- Language: C#
- Size: 71.1 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.txt
Awesome Lists containing this project
README
## live.asp.net
Code for the ASP.NET Community Stand-up site.
Staging - https://ms-asp-standup-staging.azurewebsites.net/
Production - https://live.asp.net/
### Local Development Configuration
To run the site locally with live data and login, you'll need some configuration values in your user secrets store.
If the values aren't found, hard-coded YouTube sample data will be used, and the next show details will be saved to
the root of the app in a JSON file.
To enable sign-in to the Admin page, you'll need configuration values in your secret store for an Azure AD endpoint,
plus you'll need to update the `Authorization` section of `appsettings.json` to list the usernames of the Azure AD accounts
you want to allow.
To configure the secret values, use the `user-secret` command, e.g.:
```
dotnet user-secrets set AppSettings:YouTubeApiKey
dotnet user-secrets set AppSettings:AzureStorageConnectionString
dotnet user-secrets set Authentication:AzureAd:Domain
dotnet user-secrets set Authentication:AzureAd:PostLogoutRedirectUri "https://localhost:44300/"
```