File tree Expand file tree Collapse file tree 4 files changed +2
-232
lines changed Expand file tree Collapse file tree 4 files changed +2
-232
lines changed Original file line number Diff line number Diff line change @@ -193,16 +193,6 @@ The deployed space includes:
193193- ** API Documentation** at ` /docs ` - Full OpenAPI/Swagger interface
194194- ** Health Check** at ` /health ` - Container health monitoring
195195
196- ### ` openenv convert `
197-
198- Convert an existing environment to OpenEnv format:
199-
200- ``` bash
201- openenv convert --env-path /path/to/env
202- ```
203-
204- See the [ convert command documentation] ( src/openenv_cli/commands/convert.py ) for more details.
205-
206196## Design Principles
207197
2081981 . ** Separation of Concerns** : Clear client-server boundaries
Original file line number Diff line number Diff line change 1515
1616import typer
1717
18- from openenv_cli .commands import convert
1918from openenv_cli .commands import init
2019from openenv_cli .commands import push
2120
2827
2928# Register commands
3029app .command (name = "init" , help = "Initialize a new OpenEnv environment" )(init .init )
31- app .add_typer (convert .app , name = "convert" , help = "Convert an existing environment to OpenEnv format" )
3230app .command (name = "push" , help = "Push an OpenEnv environment to Hugging Face Spaces" )(push .push )
3331
3432
Original file line number Diff line number Diff line change 66
77"""OpenEnv CLI commands."""
88
9- from openenv_cli .commands import convert , init , push
9+ from openenv_cli .commands import init , push
1010
11- __all__ = ["convert" , " init" , "push" ]
11+ __all__ = ["init" , "push" ]
1212
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments