From 80d6664f0d9a5cced121909033c6cb1256452a88 Mon Sep 17 00:00:00 2001 From: realaravinth Date: Sat, 25 Jun 2022 17:57:23 +0530 Subject: [PATCH] feat: load VM domain from settings --- dashboard/settings.py | 4 +++- docs/INSTALL.md | 5 ++++- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/dashboard/settings.py b/dashboard/settings.py index 9df86bd..4f72c1d 100644 --- a/dashboard/settings.py +++ b/dashboard/settings.py @@ -186,7 +186,9 @@ HOSTEA = { "REMOTE": "git@localhost:Hostea/enough.git", # SSH key that can push to the Git repository remote mentioned above "SSH_KEY": "/srv/hostea/deploy", - } + }, + # domain where new VMs will be created + "HOSTEA_DOMAIN": "hostea.org", }, } diff --git a/docs/INSTALL.md b/docs/INSTALL.md index 044929e..dbf6a27 100644 --- a/docs/INSTALL.md +++ b/docs/INSTALL.md @@ -86,7 +86,10 @@ HOSTEA = { "REMOTE": "git@localhost:Hostea/enough.git", # SSH key that can push to the Git repository remote mentioned above "SSH_KEY": "/srv/hostea/deploy", - } + }, + # domain where new VMs will be created + "HOSTEA_DOMAIN": "hostea.org" + }, ```