mirror of
https://github.com/azaion/satellite-provider.git
synced 2026-04-22 07:06:39 +00:00
database and migrations
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
namespace SatelliteProvider.Common.Configs;
|
||||
|
||||
public class DatabaseConfig
|
||||
{
|
||||
public string ConnectionString { get; set; } = null!;
|
||||
}
|
||||
|
||||
@@ -0,0 +1,9 @@
|
||||
namespace SatelliteProvider.Common.Configs;
|
||||
|
||||
public class ProcessingConfig
|
||||
{
|
||||
public int MaxConcurrentDownloads { get; set; } = 4;
|
||||
public int DefaultZoomLevel { get; set; } = 20;
|
||||
public int QueueCapacity { get; set; } = 100;
|
||||
}
|
||||
|
||||
@@ -0,0 +1,8 @@
|
||||
namespace SatelliteProvider.Common.Configs;
|
||||
|
||||
public class StorageConfig
|
||||
{
|
||||
public string TilesDirectory { get; set; } = "/tiles";
|
||||
public string ReadyDirectory { get; set; } = "/ready";
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user