Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- uses: actions/setup-python@v7
with:
python-version: "3.14"
- uses: astral-sh/setup-uv@v8
- uses: astral-sh/setup-uv@v8.3.2
with:
enable-cache: true
- uses: actions/setup-go@v7
Expand Down
28 changes: 28 additions & 0 deletions .lathe-template.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
schema_version: 1
language: python
defaults:
app_name: CLI-first Python app
app_slug: cli-first-python-app
cli_name: appctl
go_module: example.com/cli-first-python-app
lathe_version: v0.4.4
replacements:
- variable: app_name
files: [README.md]
- variable: app_name
from: CLI-first Node application
files: [openapi/openapi.yaml]
- variable: app_slug
files: [pyproject.toml, uv.lock]
- variable: cli_name
files: [.github/workflows/ci.yml, AGENTS.md, Makefile, README.md, cli.yaml, cmd/appctl/cli.yaml, tests/test_cli.py]
- variable: go_module
files: [go.mod, cmd/appctl/main.go]
- variable: lathe_version
files: [go.mod, Makefile]
renames:
- from: cmd/appctl
variable: cli_name
generated: [internal/generated, skills/appctl]
cleanup: [.cache, bin, .venv]
check_profile: make
Loading