Skip to content

Commit c3b67a7

Browse files
authored
Merge pull request #535 from lbedner/deployment-backups
Deployment Backups
2 parents 482064f + afb90a3 commit c3b67a7

12 files changed

Lines changed: 722 additions & 32 deletions

File tree

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**: 0.6.1
35+
**Current Version**: 0.6.2-rc1
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.6.1"
5+
__version__ = "0.6.2rc1"

aegis/__main__.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,13 @@
1414
from .commands.add_service import add_service_command
1515
from .commands.components import components_command
1616
from .commands.deploy import (
17+
deploy_backup_command,
18+
deploy_backups_command,
1719
deploy_command,
1820
deploy_init_command,
1921
deploy_logs_command,
2022
deploy_restart_command,
23+
deploy_rollback_command,
2124
deploy_setup_command,
2225
deploy_shell_command,
2326
deploy_status_command,
@@ -80,6 +83,9 @@ def main(
8083
app.command(name="deploy-init")(deploy_init_command)
8184
app.command(name="deploy-setup")(deploy_setup_command)
8285
app.command(name="deploy")(deploy_command)
86+
app.command(name="deploy-backup")(deploy_backup_command)
87+
app.command(name="deploy-backups")(deploy_backups_command)
88+
app.command(name="deploy-rollback")(deploy_rollback_command)
8389
app.command(name="deploy-logs")(deploy_logs_command)
8490
app.command(name="deploy-status")(deploy_status_command)
8591
app.command(name="deploy-stop")(deploy_stop_command)

0 commit comments

Comments
 (0)