Browsable template gallery for Creek. Fork this repo to create your own template marketplace.
Live: templates.creek.dev
pnpm install
pnpm dev # http://localhost:5173
pnpm build # Output to dist/Two files to edit:
Brand name, deploy URL, nav links:
export const config = {
brand: "your-brand",
deployUrl: "https://your-platform.com/deploy?template={slug}",
cliCommand: "npx your-cli deploy --template {slug}",
sourceUrl: "https://github.com/your-org/templates/tree/main",
// ...
};Template catalog (no rebuild needed to update):
{
"templates": [
{
"slug": "my-template",
"name": "My Template",
"description": "What it does",
"type": "app",
"capabilities": ["database", "ai"],
"screenshotUrl": null
}
]
}npx creek deployOr deploy anywhere that serves static files.
Vite + React 19 + TanStack Router + Tailwind 4. Six production dependencies.
Apache-2.0