From fde7a8209dbdbb8b50b413fe1174ae62bb06b395 Mon Sep 17 00:00:00 2001 From: Revant Nandgaonkar Date: Fri, 22 Sep 2023 13:27:15 +0530 Subject: [PATCH] fix(easy-install): set default site to site1.localhost --- easy-install.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/easy-install.py b/easy-install.py index 32602121..e1890380 100755 --- a/easy-install.py +++ b/easy-install.py @@ -117,7 +117,7 @@ def check_repo_exists() -> bool: def setup_prod(project: str, sites, email: str, version: str = None, image = None) -> None: if len(sites) == 0: - sites = ["site.localhost"] + sites = ["site1.localhost"] if check_repo_exists(): compose_file_name = os.path.join(os.path.expanduser("~"), f"{project}-compose.yml")