Skip to content

Instantly share code, notes, and snippets.

@fabriciosanchez
Created May 26, 2014 13:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fabriciosanchez/942a92f1a34a9cd83560 to your computer and use it in GitHub Desktop.
Save fabriciosanchez/942a92f1a34a9cd83560 to your computer and use it in GitHub Desktop.
Self Host Katana
static void Main(string[] args)
{
const string baseUrl = "http://localhost:5000/";
using (WebApplication.Start<Startup>(new StartOptions { Url = baseUrl }))
{
Console.WriteLine("Press Enter to quit.");
Console.ReadKey();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment