package-installer-cli 1.3.3 → 1.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/dist/commands/email.js +1140 -0
- data/dist/email-templates/bugReport.js +108 -0
- data/dist/email-templates/collectors/bugReport.js +41 -0
- data/dist/email-templates/collectors/common.js +56 -0
- data/dist/email-templates/collectors/docs.js +41 -0
- data/dist/email-templates/collectors/featureRequest.js +47 -0
- data/dist/email-templates/collectors/improvement.js +52 -0
- data/dist/email-templates/collectors/index.js +8 -0
- data/dist/email-templates/collectors/question.js +31 -0
- data/dist/email-templates/collectors/templateRequest.js +53 -0
- data/dist/email-templates/docs.js +111 -0
- data/dist/email-templates/featureRequest.js +111 -0
- data/dist/email-templates/generator.js +62 -0
- data/dist/email-templates/improvement.js +121 -0
- data/dist/email-templates/index.js +14 -0
- data/dist/email-templates/question.js +101 -0
- data/dist/email-templates/styles.js +168 -0
- data/dist/email-templates/templateRequest.js +120 -0
- data/dist/email-templates/testEmail.js +56 -0
- data/dist/email-templates/types.js +1 -0
- data/dist/index.js +29 -1
- data/dist/utils/featureInstaller.js +4 -11
- data/features/ai/ai.json +547 -0
- data/features/analytics/analytics.json +4 -0
- data/features/auth/auth.json +473 -0
- data/features/auth/auth0/django/backend/apiexample/urls.py +10 -0
- data/features/auth/auth0/django/backend/apiexample/validator.py +21 -0
- data/features/auth/auth0/django/backend/apiexample/views.py +30 -0
- data/features/auth/auth0/django/backend/requirements.txt +4 -0
- data/features/auth/auth0/django/web-app/requirements.txt +4 -0
- data/features/auth/auth0/django/web-app/webappexample/settings.py +28 -0
- data/features/auth/auth0/django/web-app/webappexample/templates/index.html +16 -0
- data/features/auth/auth0/django/web-app/webappexample/urls.py +10 -0
- data/features/auth/auth0/django/web-app/webappexample/views.py +52 -0
- data/features/auth/auth0/go/backend/go.mod +8 -0
- data/features/auth/auth0/go/backend/main.go +60 -0
- data/features/auth/auth0/go/backend/middleware/jwt.go +81 -0
- data/features/auth/auth0/go/web-app/auth.go +56 -0
- data/features/auth/auth0/go/web-app/callback.go +52 -0
- data/features/auth/auth0/go/web-app/go.mod +11 -0
- data/features/auth/auth0/go/web-app/isAuthenticated.go +20 -0
- data/features/auth/auth0/go/web-app/login.go +47 -0
- data/features/auth/auth0/go/web-app/logout.go +38 -0
- data/features/auth/auth0/go/web-app/main.go +31 -0
- data/features/auth/auth0/go/web-app/router.go +44 -0
- data/features/auth/auth0/go/web-app/user.go +18 -0
- data/features/auth/auth0/ruby-on-rails/backend/Gemfile +1 -0
- data/features/auth/auth0/ruby-on-rails/backend/app/controllers/application_controller.rb +5 -0
- data/features/auth/auth0/ruby-on-rails/backend/app/controllers/concern/secured.rb +60 -0
- data/features/auth/auth0/ruby-on-rails/backend/app/controllers/private_controller.rb +6 -0
- data/features/auth/auth0/ruby-on-rails/backend/app/controllers/public-controller.rb +6 -0
- data/features/auth/auth0/ruby-on-rails/backend/app/lib/auth0_client.rb +59 -0
- data/features/auth/auth0/ruby-on-rails/web-app/Gemfile +2 -0
- data/features/auth/auth0/ruby-on-rails/web-app/auth0_controller.rb +41 -0
- data/features/auth/auth0/ruby-on-rails/web-app/config/auth0.yml +4 -0
- data/features/auth/auth0/ruby-on-rails/web-app/config/initializers/auth0.rb +14 -0
- data/features/auth/auth0/ruby-on-rails/web-app/config/routes.rb +6 -0
- data/features/auth/auth0/ruby-on-rails/web-app/config/secured.rb +11 -0
- data/features/auth/clerk/go/clerk_client.go +28 -0
- data/features/auth/clerk/go/go.mod +5 -0
- data/features/auth/clerk/go/main.go +82 -0
- data/features/auth/clerk/nextjs/typescript/app/layout.tsx +2 -2
- data/features/auth/clerk/ruby-on-rails/Gemfile +1 -0
- data/features/auth/clerk/ruby-on-rails/app.rb +50 -0
- data/features/auth/clerk/ruby-on-rails/config/initializers/clerk.rb +4 -0
- data/features/aws/aws.json +5207 -0
- data/features/database/database.json +246 -0
- data/features/docker/docker.json +108 -0
- data/features/features.json +44 -7321
- data/features/gitignore/gitignore.json +61 -0
- data/features/monitoring/monitoring.json +5 -0
- data/features/payment/payment.json +347 -0
- data/features/storage/storage.json +371 -0
- data/features/testing/jest/angularjs/typescript/tests/angularjs.test.ts +12 -0
- data/features/testing/jest/expressjs/javascript/tests/expressjs.test.js +10 -0
- data/features/testing/jest/expressjs/typescript/tests/expressjs.test.ts +10 -0
- data/features/testing/jest/nestjs/typescript/tests/nestjs.test.ts +10 -0
- data/features/testing/jest/nextjs/javascript/tests/nextjs.test.js +10 -0
- data/features/testing/jest/nextjs/typescript/tests/nextjs.test.ts +10 -0
- data/features/testing/jest/nuxtjs/typescript/tests/nuxtjs.test.ts +9 -0
- data/features/testing/jest/reactjs/javascript/tests/reactjs.test.js +10 -0
- data/features/testing/jest/reactjs/typescript/tests/reactjs.test.ts +10 -0
- data/features/testing/jest/reactjs-expressjs-shadcn/javascript/tests/reactjs.expressjs.shadcn.test.js +16 -0
- data/features/testing/jest/reactjs-expressjs-shadcn/typescript/tests/reactjs.expressjs.shadcn.test.ts +16 -0
- data/features/testing/jest/reactjs-nestjs-shadcn/typescript/tests/reactjs.nestjs.shadcn.test.ts +14 -0
- data/features/testing/jest/remixjs/typescript/tests/remixjs.test.ts +9 -0
- data/features/testing/jest/vuejs/javascript/tests/vuejs.test.ts +9 -0
- data/features/testing/jest/vuejs/typescript/tests/vuejs.test.ts +9 -0
- data/features/testing/testing.json +102 -0
- data/features/ui/ui.json +91 -0
- metadata +88 -8
- data/features/testing/jest/angularjs/tests/angularjs.test.js +0 -12
- data/features/testing/jest/expressjs/tests/javascript/expressjs.test.js +0 -12
- data/features/testing/jest/expressjs/tests/typescript/expressjs.test.ts +0 -12
- data/features/testing/jest/go/tests/go.test.js +0 -12
- data/features/testing/jest/nextjs/tests/javascript/nextjs.test.js +0 -12
- data/features/testing/jest/nextjs/tests/typescript/nextjs.test.ts +0 -12
|
@@ -0,0 +1,246 @@
|
|
|
1
|
+
{
|
|
2
|
+
"mongodb": {
|
|
3
|
+
"mongoose": {
|
|
4
|
+
"javascript": {
|
|
5
|
+
"expressjs": {},
|
|
6
|
+
"nextjs": {}
|
|
7
|
+
},
|
|
8
|
+
"typescript": {
|
|
9
|
+
"expressjs": {},
|
|
10
|
+
"nestjs": {},
|
|
11
|
+
"nextjs": {},
|
|
12
|
+
"remixjs": {}
|
|
13
|
+
}
|
|
14
|
+
},
|
|
15
|
+
"typegoose": {
|
|
16
|
+
"typescript": {
|
|
17
|
+
"expressjs": {},
|
|
18
|
+
"nestjs": {},
|
|
19
|
+
"nextjs": {},
|
|
20
|
+
"remixjs": {}
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
},
|
|
24
|
+
"mysql": {
|
|
25
|
+
"typeorm": {
|
|
26
|
+
"javascript": {
|
|
27
|
+
"expressjs": {},
|
|
28
|
+
"nextjs": {}
|
|
29
|
+
},
|
|
30
|
+
"typescript": {
|
|
31
|
+
"expressjs": {},
|
|
32
|
+
"nestjs": {},
|
|
33
|
+
"nextjs": {},
|
|
34
|
+
"remixjs": {}
|
|
35
|
+
}
|
|
36
|
+
},
|
|
37
|
+
"prisma": {
|
|
38
|
+
"typescript": {
|
|
39
|
+
"expressjs": {},
|
|
40
|
+
"nestjs": {},
|
|
41
|
+
"nextjs": {},
|
|
42
|
+
"remixjs": {}
|
|
43
|
+
}
|
|
44
|
+
},
|
|
45
|
+
"drizzle": {
|
|
46
|
+
"typescript": {
|
|
47
|
+
"expressjs": {},
|
|
48
|
+
"nestjs": {},
|
|
49
|
+
"nextjs": {},
|
|
50
|
+
"remixjs": {}
|
|
51
|
+
}
|
|
52
|
+
},
|
|
53
|
+
"djangoORM": {
|
|
54
|
+
"python": {}
|
|
55
|
+
},
|
|
56
|
+
"SQLAlchemy": {
|
|
57
|
+
"python": {}
|
|
58
|
+
},
|
|
59
|
+
"Peewee": {
|
|
60
|
+
"python": {}
|
|
61
|
+
},
|
|
62
|
+
"GORM": {
|
|
63
|
+
"go": {}
|
|
64
|
+
},
|
|
65
|
+
"Sequel": {
|
|
66
|
+
"ruby": {}
|
|
67
|
+
}
|
|
68
|
+
},
|
|
69
|
+
"postgres": {
|
|
70
|
+
"typeorm": {
|
|
71
|
+
"javascript": {
|
|
72
|
+
"expressjs": {},
|
|
73
|
+
"nextjs": {}
|
|
74
|
+
},
|
|
75
|
+
"typescript": {
|
|
76
|
+
"expressjs": {},
|
|
77
|
+
"nestjs": {},
|
|
78
|
+
"nextjs": {},
|
|
79
|
+
"remixjs": {}
|
|
80
|
+
}
|
|
81
|
+
},
|
|
82
|
+
"prisma": {
|
|
83
|
+
"typescript": {
|
|
84
|
+
"expressjs": {},
|
|
85
|
+
"nestjs": {},
|
|
86
|
+
"nextjs": {},
|
|
87
|
+
"remixjs": {},
|
|
88
|
+
"expressjs/.env": {
|
|
89
|
+
"action": "append"
|
|
90
|
+
},
|
|
91
|
+
"expressjs/controllers/prismaController.ts": {
|
|
92
|
+
"action": "create"
|
|
93
|
+
},
|
|
94
|
+
"expressjs/index.ts": {
|
|
95
|
+
"action": "prepend"
|
|
96
|
+
},
|
|
97
|
+
"expressjs/package.json": {
|
|
98
|
+
"action": "install"
|
|
99
|
+
},
|
|
100
|
+
"expressjs/prisma/schema.prisma": {
|
|
101
|
+
"action": "create"
|
|
102
|
+
},
|
|
103
|
+
"expressjs/routes/prismaRoutes.ts": {
|
|
104
|
+
"action": "create"
|
|
105
|
+
},
|
|
106
|
+
"expressjs/utils/prisma.ts": {
|
|
107
|
+
"action": "create"
|
|
108
|
+
},
|
|
109
|
+
"nestjs/.env": {
|
|
110
|
+
"action": "append"
|
|
111
|
+
},
|
|
112
|
+
"nestjs/package.json": {
|
|
113
|
+
"action": "install"
|
|
114
|
+
},
|
|
115
|
+
"nestjs/prisma/schema.prisma": {
|
|
116
|
+
"action": "create"
|
|
117
|
+
},
|
|
118
|
+
"nestjs/src/prisma.service.ts": {
|
|
119
|
+
"action": "create"
|
|
120
|
+
},
|
|
121
|
+
"nestjs/src/user/user.controller.ts": {
|
|
122
|
+
"action": "create"
|
|
123
|
+
},
|
|
124
|
+
"nestjs/src/user/user.module.ts": {
|
|
125
|
+
"action": "create"
|
|
126
|
+
},
|
|
127
|
+
"nestjs/src/user/user.service.ts": {
|
|
128
|
+
"action": "create"
|
|
129
|
+
},
|
|
130
|
+
"nextjs/.env": {
|
|
131
|
+
"action": "append"
|
|
132
|
+
},
|
|
133
|
+
"nextjs/app/api/users/route.ts": {
|
|
134
|
+
"action": "create"
|
|
135
|
+
},
|
|
136
|
+
"nextjs/lib/prisma.ts": {
|
|
137
|
+
"action": "create"
|
|
138
|
+
},
|
|
139
|
+
"nextjs/package.json": {
|
|
140
|
+
"action": "install"
|
|
141
|
+
},
|
|
142
|
+
"nextjs/prisma/schema.prisma": {
|
|
143
|
+
"action": "create"
|
|
144
|
+
},
|
|
145
|
+
"remixjs/.env": {
|
|
146
|
+
"action": "append"
|
|
147
|
+
},
|
|
148
|
+
"remixjs/app/prisma/schema.prisma": {
|
|
149
|
+
"action": "create"
|
|
150
|
+
},
|
|
151
|
+
"remixjs/app/routes/api.users.ts": {
|
|
152
|
+
"action": "create"
|
|
153
|
+
},
|
|
154
|
+
"remixjs/app/utils/prisma.ts": {
|
|
155
|
+
"action": "create"
|
|
156
|
+
},
|
|
157
|
+
"remixjs/package.json": {
|
|
158
|
+
"action": "install"
|
|
159
|
+
}
|
|
160
|
+
}
|
|
161
|
+
},
|
|
162
|
+
"drizzle": {
|
|
163
|
+
"typescript": {
|
|
164
|
+
"expressjs": {},
|
|
165
|
+
"nestjs": {},
|
|
166
|
+
"nextjs": {},
|
|
167
|
+
"remixjs": {},
|
|
168
|
+
"expressjs/.env": {
|
|
169
|
+
"action": "append"
|
|
170
|
+
},
|
|
171
|
+
"expressjs/controllers/drizzleController.ts": {
|
|
172
|
+
"action": "create"
|
|
173
|
+
},
|
|
174
|
+
"expressjs/index.ts": {
|
|
175
|
+
"action": "prepend"
|
|
176
|
+
},
|
|
177
|
+
"expressjs/package.json": {
|
|
178
|
+
"action": "install"
|
|
179
|
+
},
|
|
180
|
+
"expressjs/routes/drizzle.ts": {
|
|
181
|
+
"action": "create"
|
|
182
|
+
},
|
|
183
|
+
"expressjs/utils/drizzle.ts": {
|
|
184
|
+
"action": "create"
|
|
185
|
+
},
|
|
186
|
+
"nestjs/.env": {
|
|
187
|
+
"action": "append"
|
|
188
|
+
},
|
|
189
|
+
"nestjs/package.json": {
|
|
190
|
+
"action": "install"
|
|
191
|
+
},
|
|
192
|
+
"nestjs/src/drizzle/drizzle.controller.ts": {
|
|
193
|
+
"action": "create"
|
|
194
|
+
},
|
|
195
|
+
"nestjs/src/drizzle/drizzle.module.ts": {
|
|
196
|
+
"action": "create"
|
|
197
|
+
},
|
|
198
|
+
"nestjs/src/drizzle/drizzle.service.ts": {
|
|
199
|
+
"action": "create"
|
|
200
|
+
},
|
|
201
|
+
"nestjs/src/drizzle.ts": {
|
|
202
|
+
"action": "create"
|
|
203
|
+
},
|
|
204
|
+
"nextjs/.env": {
|
|
205
|
+
"action": "append"
|
|
206
|
+
},
|
|
207
|
+
"nextjs/app/api/users/route.ts": {
|
|
208
|
+
"action": "create"
|
|
209
|
+
},
|
|
210
|
+
"nextjs/lib/drizzle.ts": {
|
|
211
|
+
"action": "create"
|
|
212
|
+
},
|
|
213
|
+
"nextjs/package.json": {
|
|
214
|
+
"action": "install"
|
|
215
|
+
},
|
|
216
|
+
"remixjs/.env": {
|
|
217
|
+
"action": "append"
|
|
218
|
+
},
|
|
219
|
+
"remixjs/app/routes/api.drizzle.ts": {
|
|
220
|
+
"action": "create"
|
|
221
|
+
},
|
|
222
|
+
"remixjs/app/utils/drizzle.ts": {
|
|
223
|
+
"action": "create"
|
|
224
|
+
},
|
|
225
|
+
"remixjs/package.json": {
|
|
226
|
+
"action": "install"
|
|
227
|
+
}
|
|
228
|
+
}
|
|
229
|
+
},
|
|
230
|
+
"djangoORM": {
|
|
231
|
+
"python": {}
|
|
232
|
+
},
|
|
233
|
+
"SQLAlchemy": {
|
|
234
|
+
"python": {}
|
|
235
|
+
},
|
|
236
|
+
"Peewee": {
|
|
237
|
+
"python": {}
|
|
238
|
+
},
|
|
239
|
+
"GORM": {
|
|
240
|
+
"go": {}
|
|
241
|
+
},
|
|
242
|
+
"Sequel": {
|
|
243
|
+
"ruby": {}
|
|
244
|
+
}
|
|
245
|
+
}
|
|
246
|
+
}
|
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
{
|
|
2
|
+
"angularjs": {
|
|
3
|
+
".dockerignore": {
|
|
4
|
+
"action": "create"
|
|
5
|
+
},
|
|
6
|
+
"docker-compose.yml": {
|
|
7
|
+
"action": "create"
|
|
8
|
+
},
|
|
9
|
+
"Dockerfile": {
|
|
10
|
+
"action": "create"
|
|
11
|
+
}
|
|
12
|
+
},
|
|
13
|
+
"nestjs": {
|
|
14
|
+
".dockerignore": {
|
|
15
|
+
"action": "create"
|
|
16
|
+
},
|
|
17
|
+
"docker-compose.yml": {
|
|
18
|
+
"action": "create"
|
|
19
|
+
},
|
|
20
|
+
"Dockerfile": {
|
|
21
|
+
"action": "create"
|
|
22
|
+
}
|
|
23
|
+
},
|
|
24
|
+
"nextjs": {
|
|
25
|
+
".dockerignore": {
|
|
26
|
+
"action": "create"
|
|
27
|
+
},
|
|
28
|
+
"docker-compose.yml": {
|
|
29
|
+
"action": "create"
|
|
30
|
+
},
|
|
31
|
+
"Dockerfile": {
|
|
32
|
+
"action": "create"
|
|
33
|
+
}
|
|
34
|
+
},
|
|
35
|
+
"expressjs": {
|
|
36
|
+
".dockerignore": {
|
|
37
|
+
"action": "create"
|
|
38
|
+
},
|
|
39
|
+
"docker-compose.yml": {
|
|
40
|
+
"action": "create"
|
|
41
|
+
},
|
|
42
|
+
"Dockerfile": {
|
|
43
|
+
"action": "create"
|
|
44
|
+
}
|
|
45
|
+
},
|
|
46
|
+
"reactjs": {
|
|
47
|
+
".dockerignore": {
|
|
48
|
+
"action": "create"
|
|
49
|
+
},
|
|
50
|
+
"docker-compose.yml": {
|
|
51
|
+
"action": "create"
|
|
52
|
+
},
|
|
53
|
+
"Dockerfile": {
|
|
54
|
+
"action": "create"
|
|
55
|
+
}
|
|
56
|
+
},
|
|
57
|
+
"reactjs+expressjs+shadcn": {
|
|
58
|
+
".dockerignore": {
|
|
59
|
+
"action": "create"
|
|
60
|
+
},
|
|
61
|
+
"docker-compose.yml": {
|
|
62
|
+
"action": "create"
|
|
63
|
+
},
|
|
64
|
+
"Dockerfile": {
|
|
65
|
+
"action": "create"
|
|
66
|
+
}
|
|
67
|
+
},
|
|
68
|
+
"reactjs+nestjs+shadcn": {
|
|
69
|
+
".dockerignore": {
|
|
70
|
+
"action": "create"
|
|
71
|
+
},
|
|
72
|
+
"docker-compose.yml": {
|
|
73
|
+
"action": "create"
|
|
74
|
+
},
|
|
75
|
+
"Dockerfile": {
|
|
76
|
+
"action": "create"
|
|
77
|
+
}
|
|
78
|
+
},
|
|
79
|
+
"remixjs": {
|
|
80
|
+
".dockerignore": {
|
|
81
|
+
"action": "create"
|
|
82
|
+
},
|
|
83
|
+
"docker-compose.yml": {
|
|
84
|
+
"action": "create"
|
|
85
|
+
},
|
|
86
|
+
"Dockerfile": {
|
|
87
|
+
"action": "create"
|
|
88
|
+
}
|
|
89
|
+
},
|
|
90
|
+
"vuejs": {
|
|
91
|
+
".dockerignore": {
|
|
92
|
+
"action": "create"
|
|
93
|
+
},
|
|
94
|
+
"docker-compose.yml": {
|
|
95
|
+
"action": "create"
|
|
96
|
+
},
|
|
97
|
+
"Dockerfile": {
|
|
98
|
+
"action": "create"
|
|
99
|
+
}
|
|
100
|
+
},
|
|
101
|
+
"django": {},
|
|
102
|
+
"flask": {},
|
|
103
|
+
"go": {},
|
|
104
|
+
"nuxtjs": {},
|
|
105
|
+
"react-native": {},
|
|
106
|
+
"ruby": {},
|
|
107
|
+
"rust": {}
|
|
108
|
+
}
|