Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 0
Getting Started
Leonard Ramminger edited this page Aug 22, 2026
·
2 revisions
From template to generated project folder in a few minutes.
You want to use an existing template and generate a new project folder - without writing Lua or Prebyte yourself.
- Installation complete
- A workspace with
templates/or templates installed in the Shared Template Store
tempify listJSON variant:
tempify list --jsonDetails for one template:
tempify info basic_cpptempify basic_cpp --questions
tempify basic_cpp --questions --jsonThis shows which values you need to set (project_name, name_slug, …).
tempify basic_cpp my-app \
--set project_name="My App" \
--set name_slug=my-app \
--set namespace=app_ns \
--set include_ci=false \
--set author=MeResult:
- Folder
my-app/with generated files (README.md,src/main.cpp, …) .tempify-lock.json- metadata for later reapply.tempify-summary.txt- compact value summary (depending on template)
cat > answers.json <<'EOF'{ "project_name": "My App", "name_slug": "my-app", "namespace": "app_ns", "include_ci": false, "author": "Me"}EOF
tempify basic_cpp my-app --answers answers.jsontempify basic_cpp my-app --tuitempify basic_cpp my-app --dry-run
tempify basic_cpp my-app --plan-json| Message | Fix |
|---|---|
| Template not found | Check tempify list, run tempify refresh for shared store |
| Target already exists | Use -f (overwrite) or -s (keep existing files) |
| Missing answer for … | Add --set, use --answers, or drop --non-interactive |
- Questions & Answers
- Configuration
- Reapply & Diff - update a project later
Tempify · Repository · Issues · Releases
Documentation lives in this wiki. For a build quickstart, see the README in the repository.
Prebyte (template engine) is a separate project bundled by Tempify.
- CLI Reference
- Questions & Answers
- Configuration
- Render Options
- Hooks (Users)
- Reapply & Diff
- Shared Template Store
- Prebyte Passthrough
- Shell Completion