Skip to content

Commit 07bdd91

Browse files
committed
feat(templates): add nestjs-auth-service and Python frameworks
Add new framework options for NestJS authentication service and Python (FastAPI, Flask, Django). This enhances the template selection for users by providing more diverse backend framework choices.
1 parent 7903b81 commit 07bdd91

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

src/templates.ts

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,12 @@ export const FRAMEWORKS: Framework[] = [
5252
display: "nest-prisma",
5353
color: lightGreen,
5454
},
55+
{
56+
name: "nestjs-auth-service",
57+
display: "nestjs-auth-service",
58+
color: lightGreen,
59+
customCommand: 'git clone https://github.com/pnstack/nestjs-auth-service.git TARGET_DIR'
60+
},
5561
{
5662
name: "nestjs-cli",
5763
display: "nestjs-cli ↗",
@@ -114,6 +120,29 @@ export const FRAMEWORKS: Framework[] = [
114120
},
115121
],
116122
},
123+
{
124+
name: "python",
125+
display: "Python",
126+
color: blue,
127+
variants: [
128+
{
129+
name: "python-fastapi",
130+
display: "FastAPI Project",
131+
color: lightGreen,
132+
},
133+
{
134+
name: "python-flask",
135+
display: "Flask Project",
136+
color: cyan,
137+
},
138+
{
139+
name: "python-django",
140+
display: "Django Project",
141+
color: green,
142+
customCommand: "django-admin startproject TARGET_DIR",
143+
}
144+
],
145+
},
117146
{
118147
name: "vite",
119148
display: "Vite",

0 commit comments

Comments
 (0)