-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathtemplates.json
More file actions
59 lines (59 loc) · 1.97 KB
/
Copy pathtemplates.json
File metadata and controls
59 lines (59 loc) · 1.97 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"$schema": "https://raw.githubusercontent.com/Create-Python-App/cpa-templates/main/templates.schema.json",
"categories": [
{
"slug": "backend-applications",
"name": "Backend Applications",
"description": "API and service starters for FastAPI and similar Python backends.",
"details": "Use when the deliverable is an HTTP API or background worker.",
"labels": ["Backend", "API", "Python", "FastAPI"]
},
{
"slug": "tooling",
"name": "Tooling",
"description": "Extensions that add CI, containers, databases, and developer ergonomics.",
"details": "Layer these on top of a compatible template.",
"labels": ["DevOps", "CI", "Docker", "Tooling"]
}
],
"templates": [
{
"name": "FastAPI Starter",
"slug": "fastapi-starter",
"description": "Production-ready FastAPI API with uv, Ruff, pytest, and pydantic-settings",
"url": "https://github.com/Create-Python-App/cpa-templates?subdir=templates/fastapi-starter",
"type": "fastapi-backend",
"category": "backend-applications",
"labels": ["FastAPI", "API", "Python", "uv", "Backend"]
},
{
"name": "Example CLI",
"slug": "example-cli",
"description": "Minimal local fixture template for tests",
"url": "file://.",
"type": "cli",
"category": "tooling",
"labels": ["Example"]
}
],
"extensions": [
{
"name": "Ruff Setup",
"slug": "ruff-setup",
"description": "Local fixture extension for tests",
"url": "file://.",
"type": ["cli", "fastapi-backend"],
"category": "tooling",
"labels": ["Ruff"]
},
{
"name": "GitHub Setup",
"slug": "github-setup",
"description": "GitHub Actions CI, Dependabot, issue templates",
"url": "https://github.com/Create-Python-App/cpa-templates?subdir=extensions/all-github-setup",
"type": ["fastapi-backend"],
"category": "tooling",
"labels": ["GitHub", "CI"]
}
]
}