Skip to content

Instantly share code, notes, and snippets.

@thiagoloureiro
Last active December 13, 2017 14:54
Show Gist options
  • Save thiagoloureiro/c679cd66917c89a9d27c7a044d723861 to your computer and use it in GitHub Desktop.
Save thiagoloureiro/c679cd66917c89a9d27c7a044d723861 to your computer and use it in GitHub Desktop.
private static void Main(string[] args)
{
Console.WriteLine("Starting NancyFX...");
using (var nancyHost = new NancyHost(new Uri("http://localhost:8889/nancy/")))
{
nancyHost.Start();
Console.WriteLine("Nancy now listening - navigating to http://localhost:8889/nancy/. Press enter to stop");
Console.ReadLine();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment