From d06620ca741ecb10c15e19ab7f379f9af99bb903 Mon Sep 17 00:00:00 2001 From: schulze Date: Tue, 25 Apr 2023 15:50:45 +0200 Subject: [PATCH] default port for proxima centauri --- config.default.yaml | 1 + state/config.go | 1 + 2 files changed, 2 insertions(+) diff --git a/config.default.yaml b/config.default.yaml index 77240ff..147aecd 100644 --- a/config.default.yaml +++ b/config.default.yaml @@ -1,5 +1,6 @@ mtd: services: {} + management_port: 14000 aws: regions: [] credentials_path: ./mtdaws/.credentials diff --git a/state/config.go b/state/config.go index 67e3bee..88ea825 100644 --- a/state/config.go +++ b/state/config.go @@ -18,6 +18,7 @@ type Config struct { type mtdconf struct { Services map[CustomUUID]Service `yaml:"services"` + ManagementPort uint16 `yaml:"management_port"` }