llmport-cli 0.1.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (43) hide show
  1. llmport_cli-0.1.0/.gitignore +38 -0
  2. llmport_cli-0.1.0/LICENSE +187 -0
  3. llmport_cli-0.1.0/NOTICE +15 -0
  4. llmport_cli-0.1.0/OFFICIAL.md +9 -0
  5. llmport_cli-0.1.0/PKG-INFO +263 -0
  6. llmport_cli-0.1.0/README.md +230 -0
  7. llmport_cli-0.1.0/pyproject.toml +92 -0
  8. llmport_cli-0.1.0/src/llmport/__init__.py +16 -0
  9. llmport_cli-0.1.0/src/llmport/cli.py +95 -0
  10. llmport_cli-0.1.0/src/llmport/commands/__init__.py +1 -0
  11. llmport_cli-0.1.0/src/llmport/commands/admin.py +154 -0
  12. llmport_cli-0.1.0/src/llmport/commands/config.py +146 -0
  13. llmport_cli-0.1.0/src/llmport/commands/deploy.py +370 -0
  14. llmport_cli-0.1.0/src/llmport/commands/dev/__init__.py +1 -0
  15. llmport_cli-0.1.0/src/llmport/commands/dev/dev_doctor.py +46 -0
  16. llmport_cli-0.1.0/src/llmport/commands/dev/dev_group.py +22 -0
  17. llmport_cli-0.1.0/src/llmport/commands/dev/dev_init.py +555 -0
  18. llmport_cli-0.1.0/src/llmport/commands/dev/dev_status.py +146 -0
  19. llmport_cli-0.1.0/src/llmport/commands/dev/dev_up.py +247 -0
  20. llmport_cli-0.1.0/src/llmport/commands/doctor.py +135 -0
  21. llmport_cli-0.1.0/src/llmport/commands/down.py +65 -0
  22. llmport_cli-0.1.0/src/llmport/commands/logs_cmd.py +41 -0
  23. llmport_cli-0.1.0/src/llmport/commands/module.py +86 -0
  24. llmport_cli-0.1.0/src/llmport/commands/status.py +71 -0
  25. llmport_cli-0.1.0/src/llmport/commands/tune.py +99 -0
  26. llmport_cli-0.1.0/src/llmport/commands/up.py +61 -0
  27. llmport_cli-0.1.0/src/llmport/commands/version.py +34 -0
  28. llmport_cli-0.1.0/src/llmport/core/__init__.py +1 -0
  29. llmport_cli-0.1.0/src/llmport/core/api_client.py +77 -0
  30. llmport_cli-0.1.0/src/llmport/core/bootstrap.py +211 -0
  31. llmport_cli-0.1.0/src/llmport/core/compose.py +349 -0
  32. llmport_cli-0.1.0/src/llmport/core/console.py +106 -0
  33. llmport_cli-0.1.0/src/llmport/core/detect.py +375 -0
  34. llmport_cli-0.1.0/src/llmport/core/env_gen.py +295 -0
  35. llmport_cli-0.1.0/src/llmport/core/git.py +164 -0
  36. llmport_cli-0.1.0/src/llmport/core/install.py +272 -0
  37. llmport_cli-0.1.0/src/llmport/core/registry.py +302 -0
  38. llmport_cli-0.1.0/src/llmport/core/settings.py +138 -0
  39. llmport_cli-0.1.0/src/llmport/core/sysinfo.py +183 -0
  40. llmport_cli-0.1.0/src/llmport/templates/env.j2 +33 -0
  41. llmport_cli-0.1.0/src/llmport/tui/__init__.py +1 -0
  42. llmport_cli-0.1.0/src/llmport/tui/widgets/__init__.py +1 -0
  43. llmport_cli-0.1.0/src/llmport/tui/wizard/__init__.py +1 -0
@@ -0,0 +1,38 @@
1
+ # Python
2
+ __pycache__/
3
+ *.py[cod]
4
+ *$py.class
5
+ *.egg-info/
6
+ dist/
7
+ build/
8
+ *.egg
9
+ .eggs/
10
+
11
+ # Virtual environment
12
+ .venv/
13
+ venv/
14
+ env/
15
+
16
+ # uv
17
+ uv.lock
18
+
19
+ # IDE
20
+ .idea/
21
+ .vscode/
22
+ *.swp
23
+ *.swo
24
+
25
+ # OS
26
+ .DS_Store
27
+ Thumbs.db
28
+
29
+ # Testing
30
+ .coverage
31
+ htmlcov/
32
+ .pytest_cache/
33
+
34
+ # mypy
35
+ .mypy_cache/
36
+
37
+ # ruff
38
+ .ruff_cache/
@@ -0,0 +1,187 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
177
+
178
+ APPENDIX: How to apply the Apache License to your work.
179
+
180
+ To apply the Apache License to your work, attach the following
181
+ boilerplate notice, with the fields enclosed by brackets "[]"
182
+ replaced with your own identifying information. (Don't include
183
+ the brackets!) The text should be enclosed in the appropriate
184
+ comment syntax for the file format. We also recommend that a
185
+ file or class name and description of purpose be included on the
186
+ same "printed page" as the copyright notice for easier
187
+ identification within third-party archives.
@@ -0,0 +1,15 @@
1
+ llm-port CLI
2
+
3
+ Copyright 2026 Emagin8 UG (haftungsbeschränkt) i.G. and contributors.
4
+
5
+ Licensed under the Apache License, Version 2.0 (the "License");
6
+ you may not use this file except in compliance with the License.
7
+ You may obtain a copy of the License at
8
+
9
+ http://www.apache.org/licenses/LICENSE-2.0
10
+
11
+ Unless required by applicable law or agreed to in writing, software
12
+ distributed under the License is distributed on an "AS IS" BASIS,
13
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ See the License for the specific language governing permissions and
15
+ limitations under the License.
@@ -0,0 +1,9 @@
1
+ # Brand and Official Releases
2
+
3
+ This repository is the upstream project for "llm-port" CLI.
4
+
5
+ - You may fork and modify the code under the Apache 2.0 License.
6
+ - Please do not present modified forks as the official "llm-port" project.
7
+ - Please do not use the llm-port name or logo in a way that implies endorsement or an official relationship.
8
+
9
+ Official releases are published only from this GitHub organization/repository.
@@ -0,0 +1,263 @@
1
+ Metadata-Version: 2.4
2
+ Name: llmport-cli
3
+ Version: 0.1.0
4
+ Summary: CLI installer and management tool for the llm.port platform
5
+ Project-URL: Homepage, https://llm-port.github.io
6
+ Project-URL: Repository, https://github.com/llm-port/llm-port-cli
7
+ Project-URL: Documentation, https://llm-port.github.io/docs
8
+ Project-URL: Issues, https://github.com/llm-port/llm-port-cli/issues
9
+ Author-email: Sachith Liyanagama <liyanagama@outlook.de>
10
+ Maintainer-email: Sachith Liyanagama <liyanagama@outlook.de>
11
+ License-Expression: Apache-2.0
12
+ License-File: LICENSE
13
+ License-File: NOTICE
14
+ Keywords: ai,cli,docker,infrastructure,llm
15
+ Classifier: Development Status :: 3 - Alpha
16
+ Classifier: Environment :: Console
17
+ Classifier: Intended Audience :: System Administrators
18
+ Classifier: License :: OSI Approved :: Apache Software License
19
+ Classifier: Programming Language :: Python :: 3.12
20
+ Classifier: Programming Language :: Python :: 3.13
21
+ Classifier: Topic :: System :: Installation/Setup
22
+ Classifier: Topic :: System :: Systems Administration
23
+ Requires-Python: <4.0,>=3.12
24
+ Requires-Dist: click<9,>=8.1
25
+ Requires-Dist: httpx<1,>=0.27
26
+ Requires-Dist: inquirerpy<1,>=0.3
27
+ Requires-Dist: jinja2<4,>=3.1
28
+ Requires-Dist: psutil<7,>=6.0
29
+ Requires-Dist: pyyaml<7,>=6.0
30
+ Requires-Dist: rich<14,>=13.0
31
+ Requires-Dist: textual<2,>=1.0
32
+ Description-Content-Type: text/markdown
33
+
34
+ # llmport-cli
35
+
36
+ [![PyPI version](https://img.shields.io/pypi/v/llmport-cli)](https://pypi.org/project/llmport-cli/)
37
+ [![Python 3.12+](https://img.shields.io/pypi/pyversions/llmport-cli)](https://pypi.org/project/llmport-cli/)
38
+ [![License](https://img.shields.io/badge/License-Apache_2.0-blue.svg)](https://github.com/llm-port/llm-port-cli/blob/main/LICENSE)
39
+
40
+ The single entry point to **deploy, configure, and manage** the
41
+ [llm.port](https://llm-port.github.io) platform — an open-source LLM gateway
42
+ that routes, secures, and observes traffic across local runtimes and remote
43
+ providers.
44
+
45
+ ```
46
+ pip install llmport-cli # or: uv tool install llmport-cli
47
+ llmport doctor # verify prerequisites
48
+ llmport deploy /opt/llmport # full production deployment
49
+ ```
50
+
51
+ ---
52
+
53
+ ## Features
54
+
55
+ - **One-command production deploy** — pre-flight checks, `.env` generation,
56
+ image builds, database migrations, and service startup.
57
+ - **Auto-tuning** — detects host CPU / RAM and computes optimal worker counts,
58
+ DB pool sizes, and queue channel pools.
59
+ - **Module management** — enable / disable optional services
60
+ (PII redaction, Auth, Mailer, Docling OCR) via Docker Compose profiles.
61
+ - **GPU auto-detection** — discovers NVIDIA (CUDA), AMD (ROCm), and Intel GPUs;
62
+ selects the correct vLLM container image automatically.
63
+ - **Developer workflow** — clone all repos, install deps, run infra + migrations,
64
+ and generate a VS Code workspace in one command.
65
+ - **Rich terminal UI** — tables, progress bars, and themed output powered by
66
+ [Rich](https://github.com/Textualize/rich). Interactive TUI wizard via
67
+ [Textual](https://github.com/Textualize/textual).
68
+ - **Command abbreviation** — type `llmport st` instead of `llmport status`.
69
+
70
+ ---
71
+
72
+ ## Requirements
73
+
74
+ | Dependency | Minimum |
75
+ |---|---|
76
+ | Python | 3.12 |
77
+ | Docker Engine | 24.0 |
78
+ | Docker Compose | v2 |
79
+ | Git | 2.x |
80
+
81
+ ---
82
+
83
+ ## Installation
84
+
85
+ ### From PyPI
86
+
87
+ ```bash
88
+ pip install llmport-cli
89
+
90
+ # or with uv
91
+ uv tool install llmport-cli
92
+ ```
93
+
94
+ ### From source
95
+
96
+ ```bash
97
+ git clone https://github.com/llm-port/llm-port-cli.git
98
+ cd llm-port-cli
99
+ uv sync # install deps + editable entry point
100
+ uv run llmport --help
101
+ ```
102
+
103
+ ### Verify
104
+
105
+ ```bash
106
+ llmport version
107
+ llmport doctor
108
+ ```
109
+
110
+ ---
111
+
112
+ ## Quick start
113
+
114
+ ### Production deployment
115
+
116
+ ```bash
117
+ # Full deploy — pre-flight, env gen, build, migrate, start
118
+ llmport deploy /opt/llmport
119
+
120
+ # Enable optional modules
121
+ llmport deploy /opt/llmport --modules pii,auth
122
+
123
+ # Skip image builds (pull only)
124
+ llmport deploy /opt/llmport --no-build
125
+ ```
126
+
127
+ ### Day-to-day operations
128
+
129
+ ```bash
130
+ llmport up # start all services
131
+ llmport up --build llm-port-api # rebuild a single service
132
+ llmport down # stop all services
133
+ llmport down --volumes # stop + remove volumes
134
+ llmport status # service table
135
+ llmport logs -f # tail all logs
136
+ llmport logs -f llm-port-backend # tail one service
137
+ ```
138
+
139
+ ### Modules
140
+
141
+ ```bash
142
+ llmport module list # show available modules
143
+ llmport module enable pii auth # enable modules
144
+ llmport module disable docling # disable a module
145
+ ```
146
+
147
+ ### Configuration
148
+
149
+ ```bash
150
+ llmport config show # print current config
151
+ llmport config set dev.branch main # update a value (dot-notation)
152
+ llmport config edit # open in $EDITOR
153
+ llmport config path # print config file location
154
+ ```
155
+
156
+ ### Auto-tuning
157
+
158
+ ```bash
159
+ llmport tune # detect resources, write .env
160
+ llmport tune --profile prod # production-grade sizing
161
+ llmport tune --dry-run # preview without writing
162
+ ```
163
+
164
+ ### Admin utilities
165
+
166
+ ```bash
167
+ llmport admin reset-password --email admin@localhost
168
+ ```
169
+
170
+ ### Developer workflow
171
+
172
+ ```bash
173
+ # Bootstrap everything — clone repos, install deps, start infra,
174
+ # run migrations, generate VS Code workspace
175
+ llmport dev init ~/projects/llm-port
176
+ llmport dev init ~/projects/llm-port --ssh # SSH cloning
177
+ llmport dev init ~/projects/llm-port --overwrite # force pull
178
+
179
+ # Start / stop / status
180
+ llmport dev up
181
+ llmport dev up --backend-only
182
+ llmport dev down
183
+ llmport dev status
184
+
185
+ # Check dev prerequisites (optionally auto-install missing tools)
186
+ llmport dev doctor
187
+ llmport dev doctor --install --yes
188
+ ```
189
+
190
+ ---
191
+
192
+ ## Command reference
193
+
194
+ | Command | Description |
195
+ |---|---|
196
+ | `llmport version` | Print CLI, Python, Docker, and Compose versions |
197
+ | `llmport doctor` | Run system health checks (OS, RAM, disk, Docker, GPU, ports) |
198
+ | `llmport deploy [DIR]` | Full production deployment with pre-flight checks |
199
+ | `llmport up [SERVICES...]` | Start services (supports `--build`, `--pull`) |
200
+ | `llmport down` | Stop and remove containers (`--volumes`, `--all`) |
201
+ | `llmport status` | Show service state, health, and ports (`--json`) |
202
+ | `llmport logs [SERVICES...]` | Stream logs (`-f`, `-n`, `--timestamps`) |
203
+ | `llmport config show\|set\|edit\|path\|init` | Manage YAML configuration |
204
+ | `llmport module list\|enable\|disable` | Toggle optional platform modules |
205
+ | `llmport tune` | Auto-tune worker and pool settings (`--profile`, `--dry-run`) |
206
+ | `llmport admin reset-password` | Reset a user password directly in the database |
207
+ | `llmport dev init [DIR]` | Bootstrap full developer workspace |
208
+ | `llmport dev up` | Start backend, worker, and frontend dev servers |
209
+ | `llmport dev down` | Stop all dev processes |
210
+ | `llmport dev status` | Show repo branches, infra, and dev processes |
211
+ | `llmport dev doctor` | Check dev prerequisites (`--install`) |
212
+
213
+ ---
214
+
215
+ ## Project structure
216
+
217
+ ```
218
+ llm_port_cli/
219
+ ├── pyproject.toml
220
+ ├── src/
221
+ │ └── llmport/
222
+ │ ├── cli.py # Click root group + AliasedGroup
223
+ │ ├── commands/
224
+ │ │ ├── version.py # version
225
+ │ │ ├── doctor.py # doctor
226
+ │ │ ├── deploy.py # deploy
227
+ │ │ ├── up.py # up
228
+ │ │ ├── down.py # down
229
+ │ │ ├── status.py # status
230
+ │ │ ├── logs_cmd.py # logs
231
+ │ │ ├── config.py # config group
232
+ │ │ ├── module.py # module group
233
+ │ │ ├── tune.py # tune
234
+ │ │ ├── admin.py # admin group
235
+ │ │ └── dev/ # developer workflow
236
+ │ │ ├── dev_init.py
237
+ │ │ ├── dev_up.py
238
+ │ │ ├── dev_status.py
239
+ │ │ └── dev_doctor.py
240
+ │ ├── core/ # shared utilities
241
+ │ │ ├── compose.py # Docker Compose wrapper
242
+ │ │ ├── detect.py # OS / GPU / port detection
243
+ │ │ ├── settings.py # YAML config (~/.config/llmport/)
244
+ │ │ ├── api_client.py # Backend REST client (httpx)
245
+ │ │ ├── bootstrap.py # First-admin bootstrap
246
+ │ │ ├── env_gen.py # .env generation (Jinja2)
247
+ │ │ ├── git.py # Git clone / checkout helpers
248
+ │ │ ├── install.py # Cross-platform tool installer
249
+ │ │ ├── registry.py # Central metadata registry
250
+ │ │ ├── sysinfo.py # Resource detection + tuning
251
+ │ │ └── console.py # Rich themed output
252
+ │ ├── tui/ # Textual TUI wizard
253
+ │ └── templates/ # Jinja2 .env templates
254
+ └── tests/
255
+ ```
256
+
257
+ ---
258
+
259
+ ## License
260
+
261
+ Apache License 2.0 — see [LICENSE](LICENSE) for details.
262
+
263
+ Part of the [llm.port](https://github.com/llm-port) project.