Lots of work!

This commit is contained in:
tidusjar 2016-02-26 14:19:02 +00:00
parent 8f0ca3d1c4
commit 448cd8d92e
52 changed files with 6277 additions and 250 deletions

View file

@ -4,14 +4,22 @@ using Microsoft.Owin.Hosting;
using Nancy.Hosting.Self;
using RequestPlex.Core;
namespace RequestPlex.UI
{
class Program
{
static void Main(string[] args)
{
var uri =
"http://localhost:3579";
var service = new SettingsService();
var settings = service.GetSettings();
var uri = "http://localhost:3579/";
if (settings != null)
{
uri = $"http://localhost:{settings.Port}";
}
using (WebApp.Start<Startup>(uri))
{