|
13 | 13 | from .commands.add import add_command |
14 | 14 | from .commands.add_service import add_service_command |
15 | 15 | from .commands.components import components_command |
| 16 | +from .commands.deploy import ( |
| 17 | + deploy_command, |
| 18 | + deploy_init_command, |
| 19 | + deploy_logs_command, |
| 20 | + deploy_restart_command, |
| 21 | + deploy_setup_command, |
| 22 | + deploy_shell_command, |
| 23 | + deploy_status_command, |
| 24 | + deploy_stop_command, |
| 25 | +) |
| 26 | +from .commands.ingress import ingress_enable_command |
16 | 27 | from .commands.init import init_command |
17 | 28 | from .commands.remove import remove_command |
18 | 29 | from .commands.remove_service import remove_service_command |
@@ -62,6 +73,19 @@ def main( |
62 | 73 | app.command(name="remove-service")(remove_service_command) |
63 | 74 | app.command(name="update")(update_command) |
64 | 75 |
|
| 76 | +# Ingress commands |
| 77 | +app.command(name="ingress-enable")(ingress_enable_command) |
| 78 | + |
| 79 | +# Deploy commands |
| 80 | +app.command(name="deploy-init")(deploy_init_command) |
| 81 | +app.command(name="deploy-setup")(deploy_setup_command) |
| 82 | +app.command(name="deploy")(deploy_command) |
| 83 | +app.command(name="deploy-logs")(deploy_logs_command) |
| 84 | +app.command(name="deploy-status")(deploy_status_command) |
| 85 | +app.command(name="deploy-stop")(deploy_stop_command) |
| 86 | +app.command(name="deploy-restart")(deploy_restart_command) |
| 87 | +app.command(name="deploy-shell")(deploy_shell_command) |
| 88 | + |
65 | 89 |
|
66 | 90 | # This is what runs when you do: aegis |
67 | 91 | if __name__ == "__main__": |
|
0 commit comments