switch ordering stuff
This commit is contained in:
@@ -13,11 +13,6 @@ logger.addHandler(logging.StreamHandler(sys.stdout))
|
|||||||
|
|
||||||
class Setup:
|
class Setup:
|
||||||
|
|
||||||
@staticmethod
|
|
||||||
def populate_store():
|
|
||||||
Path("store/stack").mkdir(parents=True, exist_ok=True)
|
|
||||||
Path("store/stack/.env").touch(exist_ok=True)
|
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def create_symlink():
|
def create_symlink():
|
||||||
host_data_env = getenv("HOST_DATA_PATH", None)
|
host_data_env = getenv("HOST_DATA_PATH", None)
|
||||||
@@ -35,6 +30,12 @@ class Setup:
|
|||||||
except:
|
except:
|
||||||
logger.error(f"Failed to create symlink from {host_data_env}")
|
logger.error(f"Failed to create symlink from {host_data_env}")
|
||||||
|
|
||||||
|
@staticmethod
|
||||||
|
def populate_store():
|
||||||
|
Path("store/stack").mkdir(parents=True, exist_ok=True)
|
||||||
|
Path("store/stack/.env").touch(exist_ok=True)
|
||||||
|
|
||||||
|
|
||||||
class Composer:
|
class Composer:
|
||||||
|
|
||||||
services = []
|
services = []
|
||||||
|
|||||||
Reference in New Issue
Block a user