Code for live.asp.net, which hosts the ASP.NET Community Stand-up
Перейти к файлу
Damian Edwards a67122c0ca Fix youtube video date issue and optimize to just 2 youtube API calls.
Update youtube API package to latest version.
Set copyright date to current year.
2019-05-21 17:56:09 -07:00
.vscode - Don't publish unneeded files 2017-01-31 22:14:02 -08:00
assets New home bg image 2015-08-03 22:55:23 -07:00
src/live.asp.net Fix youtube video date issue and optimize to just 2 youtube API calls. 2019-05-21 17:56:09 -07:00
.deployment Add custom Kudu deployment script 2017-09-14 12:16:07 -07:00
.gitattributes Skeleton site added 2015-07-23 16:59:44 -07:00
.gitignore Add package-lock.json: 2017-12-05 15:17:01 -08:00
CONTRIBUTING.md Added LICENSE.txt & CONTRIBUTING.md 2015-07-31 16:00:11 -07:00
LICENSE.txt Switch to MIT 2015-08-07 11:32:18 -07:00
README.md Update README.md 2017-01-31 10:26:05 -08:00
deploy.cmd Fix deployment script 2019-03-26 10:58:55 -07:00
live.asp.net.sln Tweak private feed config 2019-05-14 21:23:33 -07:00

README.md

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

This project now requires Visual Studio 2017 RC build 15.0.0-RC.3+26127.0 or higher, or if using the .NET CLI with VS Code or an OmniSharp enabled editor, .NET Core SDK 1.0 RC3 build 004530 or higher.

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 <app-server-key>
  
dotnet user-secrets set AppSettings:AzureStorageConnectionString <azure-storage-connection-string>

dotnet user-secrets set Authentication:AzureAd:Domain <azure-ad-domain-name>

dotnet user-secrets set Authentication:AzureAd:PostLogoutRedirectUri "https://localhost:44300/"