Set up docker image and k8s deployment

This commit is contained in:
2025-02-28 12:51:11 -06:00
parent b7230950b2
commit f3e047eccc
8 changed files with 100 additions and 3 deletions

View File

@@ -2,12 +2,14 @@
using System;
public class ServiceOptions {
public string Baserom { get; set; } = null!;
public string PythonPath { get; set; } = null!;
public string RandomizerPath { get; set; } = null!;
public AzureSettings AzureSettings { get; set; } = new AzureSettings();
}
public class AzureSettings {
public string? ClientId { get; set; }
public Uri BlobstoreEndpoint { get; set; } = null!;
}
}