diff --git a/README.md b/README.md index ab9558d..ddbf5a4 100644 --- a/README.md +++ b/README.md @@ -154,6 +154,8 @@ Please note any ideas and arguments you have: https://pad.local-it.org/dB0FsiomR - A go binary that is build on top of the abra library - An abra command like `abra compose` +- Put `config.yml` into `~/.abra/servers//` or let the user decide? + - Should we move completely away from .env files? - This would skip the translation step into env files - It reduces the complexity! @@ -165,4 +167,3 @@ Please note any ideas and arguments you have: https://pad.local-it.org/dB0FsiomR - better configuration versioning for different recipe versions - harder to maintain the recipes: requires knowledge about the connectable apps - Global config? - diff --git a/alakazam.py b/alakazam.py index 59d3e6e..7e3fa28 100755 --- a/alakazam.py +++ b/alakazam.py @@ -269,7 +269,7 @@ def deploy_apps(apps): for app in INSTANCE["apps"]: domain = map_subdomain(app) if (apps and app in apps) or domain not in deployed_domains: - logging.info(f'deploy {domain}') + print(f'deploy {domain}') print(abra("app", "deploy", "-C", "-n", domain)) logging.info(f'execute commands for {domain}') execute_cmds(app) @@ -284,7 +284,7 @@ def undeploy_apps(apps): apps = INSTANCE["apps"] for app in apps: domain = map_subdomain(app) - logging.info(f'undeploy {domain}') + print(f'undeploy {domain}') if domain in deployed_domains: print(abra("app", "undeploy", "-n", domain))