mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-07 21:51:13 -07:00
Some work on the requests page
This commit is contained in:
parent
8043cdd527
commit
48fd182e52
8 changed files with 209 additions and 37 deletions
|
@ -48,13 +48,21 @@ namespace RequestPlex.UI
|
|||
s.SetupDb();
|
||||
|
||||
var uri = GetStartupUri();
|
||||
|
||||
using (WebApp.Start<Startup>(uri))
|
||||
try
|
||||
{
|
||||
Console.WriteLine($"Request Plex is running on {uri}");
|
||||
Console.WriteLine("Press any key to exit");
|
||||
Console.ReadLine();
|
||||
using (WebApp.Start<Startup>(uri))
|
||||
{
|
||||
Console.WriteLine($"Request Plex is running on {uri}");
|
||||
Console.WriteLine("Press any key to exit");
|
||||
Console.ReadLine();
|
||||
}
|
||||
}
|
||||
catch (Exception e)
|
||||
{
|
||||
|
||||
throw;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
private static void WriteOutVersion()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue