27 lines
662 B
Python
27 lines
662 B
Python
"""
|
|
PyServeCtl - Service management CLI
|
|
|
|
Docker-compose-like tool for managing PyServe services.
|
|
|
|
Usage:
|
|
pyservectl [OPTIONS] COMMAND [ARGS]...
|
|
|
|
Commands:
|
|
init Initialize a new project
|
|
config Configuration management
|
|
up Start all services
|
|
down Stop all services
|
|
start Start specific services
|
|
stop Stop specific services
|
|
restart Restart services
|
|
ps Show service status
|
|
logs View service logs
|
|
top Live monitoring dashboard
|
|
health Check service health
|
|
scale Scale services
|
|
"""
|
|
|
|
from .main import cli, main
|
|
|
|
__all__ = ["cli", "main"]
|