- Updated the terminology from "components" to "programs" across the codebase, including in config loading, saving, and manifest specifications. - Introduced a new `stacks.py` file to handle lifecycle actions for development stacks, implementing handlers for Python and React Vite stacks. - Adjusted tests to reflect the new program structure and ensure proper functionality. - Revised documentation to align with the new terminology and structure, ensuring clarity on the purpose and configuration of programs, services, and jobs.
34 lines
911 B
Markdown
34 lines
911 B
Markdown
# TO DO
|
|
|
|
- Remove devbox-connect. Instead, make it easy to copy an ssh tunnel command to expose all ports of all services to a remote box: `ssh -L 9000:localhost:9000 payne@dev.payne.io, etc.
|
|
- Add a scripts dir?
|
|
|
|
- Component (software units) types:
|
|
- python/golang/rust/bash tool: use std-in/std-out unix philosophy
|
|
- python/golang/rust-daemon: Whatever
|
|
- python web-service: RESTful, fastapi, SSE, etc.
|
|
- react-frontend
|
|
- python API
|
|
|
|
- Dependencies
|
|
- docker/podman (mqtt)
|
|
- all component system dependencies
|
|
- uv
|
|
- golang/rust/java/.net/whatever
|
|
|
|
- Add amplifier to make a component builder
|
|
|
|
- What's this about? "I need to add the MQTT env vars to the systemd unit. Let me add them via a drop-in override so the deploy command doesn't overwrite them."
|
|
|
|
|
|
- python-tool
|
|
- golang-tool
|
|
- rust-tool
|
|
- bash-tool
|
|
- python-daemon
|
|
- golang-daemon
|
|
- rust-daemon
|
|
- react-frontend
|
|
- python-webserver
|
|
|