mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-16 02:02:55 -07:00
Lots of work!
This commit is contained in:
parent
8f0ca3d1c4
commit
448cd8d92e
52 changed files with 6277 additions and 250 deletions
|
@ -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))
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue