Context-aware CLI tool to improve developer experience for full-stack webapps.
Install devhand globally using uv:
# From your workspace root
cd devhand
uv pip install -e .Or install as a uv tool:
uv tool install /path/to/devhandFrom your workspace root (parent directory of frontend/backend projects):
-
Setup your environment:
dh setup
-
Validate environment:
dh validate
-
Start development server:
cd hello-world-fe # or hello-world-be dh dev
dh setup- Interactive environment setupdh validate- Check environment healthdh validate --deploy- Check for deployment completiondh dev- Start dev server (context-aware)dh build- Build for productiondh build --docker- Build Docker imagedh db migrate- Run migrationsdh db sync-users- Sync allowed usersdh clean- Remove artifacts
See full documentation in the repository.