Skip to content

Commit 81d9d89

Browse files
authored
Merge pull request #499 from lbedner/deployment
Deployment
2 parents 9c675a8 + 00070b7 commit 81d9d89

22 files changed

Lines changed: 1318 additions & 71 deletions

CLAUDE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Each generated project includes:
3232

3333
## Installation
3434

35-
**Current Version**: v0.5.4
35+
**Current Version**: 0.6.0rc1
3636

3737
```bash
3838
pip install aegis-stack

aegis/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
Aegis Stack CLI - Component generation and project management tools.
33
"""
44

5-
__version__ = "0.5.4"
5+
__version__ = "0.6.0rc1"

aegis/__main__.py

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,17 @@
1313
from .commands.add import add_command
1414
from .commands.add_service import add_service_command
1515
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
1627
from .commands.init import init_command
1728
from .commands.remove import remove_command
1829
from .commands.remove_service import remove_service_command
@@ -62,6 +73,19 @@ def main(
6273
app.command(name="remove-service")(remove_service_command)
6374
app.command(name="update")(update_command)
6475

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+
6589

6690
# This is what runs when you do: aegis
6791
if __name__ == "__main__":

0 commit comments

Comments
 (0)