dotnet core notes - nagasudhirpulla/open_shift_scheduler GitHub Wiki
start command is dotnet run --project OpenShiftScheduler --urls="http://0.0.0.0:5001"
Create user seeds at the startup of server - http://www.binaryintellect.net/articles/5e180dfa-4438-45d8-ac78-c7cc11735791.aspx
Setting environment variables in iis - https://www.andrecarlucci.com/en/setting-environment-variables-for-asp-net-core-when-publishing-on-iis/
for nested appsettings variables in iis environment variables use :, example ConnectionStrings:DefaultConnection
set asp.net iis environment by setting ASPNETCORE_ENVIRONMENT (example set this to Development)
reading appsettings.json through injected IConfiguration object https://stackoverflow.com/questions/46940710/getting-value-from-appsettings-json-in-net-core
set environment to production/development in visual studio using launchSettings.json
file