mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-07 21:51:13 -07:00
More work on the settings
This commit is contained in:
parent
8c9bd41057
commit
a00d5b69f2
14 changed files with 152 additions and 39 deletions
|
@ -1,11 +1,9 @@
|
|||
using System;
|
||||
|
||||
using System.Diagnostics;
|
||||
using Microsoft.Owin.Hosting;
|
||||
|
||||
using Mono.Data.Sqlite;
|
||||
|
||||
using Nancy.Hosting.Self;
|
||||
|
||||
using RequestPlex.Core;
|
||||
using RequestPlex.Core.SettingModels;
|
||||
using RequestPlex.Helpers;
|
||||
|
@ -18,6 +16,8 @@ namespace RequestPlex.UI
|
|||
{
|
||||
static void Main(string[] args)
|
||||
{
|
||||
var assemblyVer = AssemblyHelper.GetAssemblyVersion();
|
||||
Console.WriteLine($"Version: {assemblyVer}");
|
||||
var uri = "http://localhost:3579/";
|
||||
var s = new Setup();
|
||||
s.SetupDb();
|
||||
|
@ -32,8 +32,8 @@ namespace RequestPlex.UI
|
|||
|
||||
using (WebApp.Start<Startup>(uri))
|
||||
{
|
||||
Console.WriteLine("Running on {0}", uri);
|
||||
Console.WriteLine("Press enter to exit");
|
||||
Console.WriteLine($"Request Plex is running on {uri}");
|
||||
Console.WriteLine("Press any key to exit");
|
||||
Console.ReadLine();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue