create-prisma-php-app 1.22.503 → 1.22.504
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.
- package/dist/index.js +990 -786
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -10,57 +10,62 @@ const __filename = fileURLToPath(import.meta.url);
|
|
|
10
10
|
const __dirname = path.dirname(__filename);
|
|
11
11
|
let updateAnswer = null;
|
|
12
12
|
const nonBackendFiles = [
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
13
|
+
"favicon.ico",
|
|
14
|
+
"\\src\\app\\index.php",
|
|
15
|
+
"metadata.php",
|
|
16
|
+
"not-found.php",
|
|
17
17
|
];
|
|
18
18
|
const dockerFiles = [
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
19
|
+
".dockerignore",
|
|
20
|
+
"docker-compose.yml",
|
|
21
|
+
"Dockerfile",
|
|
22
|
+
"apache.conf",
|
|
23
23
|
];
|
|
24
24
|
function bsConfigUrls(projectRootPath) {
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
bsPathRewrite: {},
|
|
32
|
-
};
|
|
33
|
-
}
|
|
34
|
-
// Extract the path up to and including 'htdocs\\'
|
|
35
|
-
const basePathToRemove = projectRootPath.substring(0, htdocsIndex + "\\htdocs\\".length);
|
|
36
|
-
// Escape backslashes for the regex pattern
|
|
37
|
-
const escapedBasePathToRemove = basePathToRemove.replace(/\\/g, "\\\\");
|
|
38
|
-
// Remove the base path and replace backslashes with forward slashes for URL compatibility
|
|
39
|
-
const relativeWebPath = projectRootPath
|
|
40
|
-
.replace(new RegExp(`^${escapedBasePathToRemove}`), "")
|
|
41
|
-
.replace(/\\/g, "/");
|
|
42
|
-
// Construct the Browser Sync command with the correct proxy URL, being careful not to affect the protocol part
|
|
43
|
-
let proxyUrl = `http://localhost/${relativeWebPath}`;
|
|
44
|
-
// Ensure the proxy URL does not end with a slash before appending '/public'
|
|
45
|
-
proxyUrl = proxyUrl.endsWith("/") ? proxyUrl.slice(0, -1) : proxyUrl;
|
|
46
|
-
// Clean the URL by replacing "//" with "/" but not affecting "http://"
|
|
47
|
-
// We replace instances of "//" that are not preceded by ":"
|
|
48
|
-
const cleanUrl = proxyUrl.replace(/(?<!:)(\/\/+)/g, "/");
|
|
49
|
-
const cleanRelativeWebPath = relativeWebPath.replace(/\/\/+/g, "/");
|
|
50
|
-
// Correct the relativeWebPath to ensure it does not start with a "/"
|
|
51
|
-
const adjustedRelativeWebPath = cleanRelativeWebPath.startsWith("/")
|
|
52
|
-
? cleanRelativeWebPath.substring(1)
|
|
53
|
-
: cleanRelativeWebPath;
|
|
25
|
+
// Identify the base path dynamically up to and including 'htdocs'
|
|
26
|
+
const htdocsIndex = projectRootPath.indexOf("\\htdocs\\");
|
|
27
|
+
if (htdocsIndex === -1) {
|
|
28
|
+
console.error(
|
|
29
|
+
"Invalid PROJECT_ROOT_PATH. The path does not contain \\htdocs\\"
|
|
30
|
+
);
|
|
54
31
|
return {
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
"^/": `/${adjustedRelativeWebPath}/`,
|
|
58
|
-
},
|
|
32
|
+
bsTarget: "",
|
|
33
|
+
bsPathRewrite: {},
|
|
59
34
|
};
|
|
35
|
+
}
|
|
36
|
+
// Extract the path up to and including 'htdocs\\'
|
|
37
|
+
const basePathToRemove = projectRootPath.substring(
|
|
38
|
+
0,
|
|
39
|
+
htdocsIndex + "\\htdocs\\".length
|
|
40
|
+
);
|
|
41
|
+
// Escape backslashes for the regex pattern
|
|
42
|
+
const escapedBasePathToRemove = basePathToRemove.replace(/\\/g, "\\\\");
|
|
43
|
+
// Remove the base path and replace backslashes with forward slashes for URL compatibility
|
|
44
|
+
const relativeWebPath = projectRootPath
|
|
45
|
+
.replace(new RegExp(`^${escapedBasePathToRemove}`), "")
|
|
46
|
+
.replace(/\\/g, "/");
|
|
47
|
+
// Construct the Browser Sync command with the correct proxy URL, being careful not to affect the protocol part
|
|
48
|
+
let proxyUrl = `http://localhost/${relativeWebPath}`;
|
|
49
|
+
// Ensure the proxy URL does not end with a slash before appending '/public'
|
|
50
|
+
proxyUrl = proxyUrl.endsWith("/") ? proxyUrl.slice(0, -1) : proxyUrl;
|
|
51
|
+
// Clean the URL by replacing "//" with "/" but not affecting "http://"
|
|
52
|
+
// We replace instances of "//" that are not preceded by ":"
|
|
53
|
+
const cleanUrl = proxyUrl.replace(/(?<!:)(\/\/+)/g, "/");
|
|
54
|
+
const cleanRelativeWebPath = relativeWebPath.replace(/\/\/+/g, "/");
|
|
55
|
+
// Correct the relativeWebPath to ensure it does not start with a "/"
|
|
56
|
+
const adjustedRelativeWebPath = cleanRelativeWebPath.startsWith("/")
|
|
57
|
+
? cleanRelativeWebPath.substring(1)
|
|
58
|
+
: cleanRelativeWebPath;
|
|
59
|
+
return {
|
|
60
|
+
bsTarget: `${cleanUrl}/`,
|
|
61
|
+
bsPathRewrite: {
|
|
62
|
+
"^/": `/${adjustedRelativeWebPath}/`,
|
|
63
|
+
},
|
|
64
|
+
};
|
|
60
65
|
}
|
|
61
66
|
function configureBrowserSyncCommand(baseDir) {
|
|
62
|
-
|
|
63
|
-
|
|
67
|
+
// TypeScript content to write
|
|
68
|
+
const bsConfigTsContent = `const { createProxyMiddleware } = require("http-proxy-middleware");
|
|
64
69
|
const fs = require("fs");
|
|
65
70
|
const chokidar = require("chokidar");
|
|
66
71
|
const { execSync } = require("child_process");
|
|
@@ -70,7 +75,7 @@ const config = JSON.parse(jsonData);
|
|
|
70
75
|
|
|
71
76
|
// Watch for file changes (create, delete, save)
|
|
72
77
|
const watcher = chokidar.watch("src/**/*", {
|
|
73
|
-
ignored: /(^|[
|
|
78
|
+
ignored: /(^|[\\/])\../,
|
|
74
79
|
persistent: true,
|
|
75
80
|
usePolling: true,
|
|
76
81
|
interval: 1000,
|
|
@@ -112,318 +117,379 @@ module.exports = {
|
|
|
112
117
|
interval: 1000,
|
|
113
118
|
},
|
|
114
119
|
};`;
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
+
// Determine the path and write the bs-config.js
|
|
121
|
+
const bsConfigPath = path.join(baseDir, "settings", "bs-config.cjs");
|
|
122
|
+
fs.writeFileSync(bsConfigPath, bsConfigTsContent, "utf8");
|
|
123
|
+
// Return the Browser Sync command string, using the cleaned URL
|
|
124
|
+
return `browser-sync start --config settings/bs-config.cjs`;
|
|
120
125
|
}
|
|
121
126
|
async function updatePackageJson(baseDir, answer) {
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
packageJson.scripts =
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
127
|
+
const packageJsonPath = path.join(baseDir, "package.json");
|
|
128
|
+
if (checkExcludeFiles(packageJsonPath)) return;
|
|
129
|
+
const packageJson = JSON.parse(fs.readFileSync(packageJsonPath, "utf8"));
|
|
130
|
+
// Use the new function to configure the Browser Sync command
|
|
131
|
+
const browserSyncCommand = configureBrowserSyncCommand(baseDir);
|
|
132
|
+
packageJson.scripts = Object.assign(Object.assign({}, packageJson.scripts), {
|
|
133
|
+
projectName: "node settings/project-name.cjs",
|
|
134
|
+
});
|
|
135
|
+
let answersToInclude = [];
|
|
136
|
+
if (answer.tailwindcss) {
|
|
137
|
+
packageJson.scripts = Object.assign(
|
|
138
|
+
Object.assign({}, packageJson.scripts),
|
|
139
|
+
{
|
|
140
|
+
tailwind:
|
|
141
|
+
"postcss ./src/app/css/tailwind.css -o ./src/app/css/styles.css --watch",
|
|
142
|
+
}
|
|
143
|
+
);
|
|
144
|
+
answersToInclude.push("tailwind");
|
|
145
|
+
}
|
|
146
|
+
if (answer.websocket) {
|
|
147
|
+
packageJson.scripts = Object.assign(
|
|
148
|
+
Object.assign({}, packageJson.scripts),
|
|
149
|
+
{ websocket: "node ./settings/restart-websocket.cjs" }
|
|
150
|
+
);
|
|
151
|
+
answersToInclude.push("websocket");
|
|
152
|
+
}
|
|
153
|
+
// if (answer.prisma) {
|
|
154
|
+
// packageJson.scripts = {
|
|
155
|
+
// ...packageJson.scripts,
|
|
156
|
+
// postinstall: "prisma generate",
|
|
157
|
+
// };
|
|
158
|
+
// }
|
|
159
|
+
if (answer.docker) {
|
|
160
|
+
packageJson.scripts = Object.assign(
|
|
161
|
+
Object.assign({}, packageJson.scripts),
|
|
162
|
+
{ docker: "docker-compose up" }
|
|
163
|
+
);
|
|
164
|
+
answersToInclude.push("docker");
|
|
165
|
+
}
|
|
166
|
+
if (answer.swaggerDocs) {
|
|
167
|
+
packageJson.scripts = Object.assign(
|
|
168
|
+
Object.assign({}, packageJson.scripts),
|
|
169
|
+
{ "create-swagger-docs": "node settings/swagger-setup.js" }
|
|
170
|
+
);
|
|
171
|
+
answersToInclude.push("create-swagger-docs");
|
|
172
|
+
}
|
|
173
|
+
// Initialize with existing scripts
|
|
174
|
+
let updatedScripts = Object.assign({}, packageJson.scripts);
|
|
175
|
+
// Conditionally add "browser-sync" command
|
|
176
|
+
updatedScripts.browserSync = browserSyncCommand;
|
|
177
|
+
updatedScripts.npmRunAll =
|
|
178
|
+
answersToInclude.length > 0
|
|
179
|
+
? `npm-run-all -p ${answersToInclude.join(" ")}`
|
|
180
|
+
: 'echo "No additional scripts to run"';
|
|
181
|
+
updatedScripts.dev = `node settings/start-dev.js`;
|
|
182
|
+
// Finally, assign the updated scripts back to packageJson
|
|
183
|
+
packageJson.scripts = updatedScripts;
|
|
184
|
+
packageJson.type = "module";
|
|
185
|
+
if (answer.prisma)
|
|
186
|
+
packageJson.prisma = {
|
|
187
|
+
seed: "node prisma/seed.js",
|
|
188
|
+
};
|
|
189
|
+
fs.writeFileSync(packageJsonPath, JSON.stringify(packageJson, null, 2));
|
|
169
190
|
}
|
|
170
191
|
async function updateComposerJson(baseDir, answer) {
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
192
|
+
const composerJsonPath = path.join(baseDir, "composer.json");
|
|
193
|
+
if (checkExcludeFiles(composerJsonPath)) return;
|
|
194
|
+
let composerJson;
|
|
195
|
+
// Check if the composer.json file exists
|
|
196
|
+
if (fs.existsSync(composerJsonPath)) {
|
|
197
|
+
// Read the current composer.json content
|
|
198
|
+
const composerJsonContent = fs.readFileSync(composerJsonPath, "utf8");
|
|
199
|
+
composerJson = JSON.parse(composerJsonContent);
|
|
200
|
+
} else {
|
|
201
|
+
console.error("composer.json does not exist.");
|
|
202
|
+
return;
|
|
203
|
+
}
|
|
204
|
+
// Conditionally add WebSocket dependency
|
|
205
|
+
if (answer.websocket) {
|
|
206
|
+
composerJson.require = Object.assign(
|
|
207
|
+
Object.assign({}, composerJson.require),
|
|
208
|
+
{ "cboden/ratchet": "^0.4.4" }
|
|
209
|
+
);
|
|
210
|
+
}
|
|
211
|
+
if (answer.prisma) {
|
|
212
|
+
composerJson.require = Object.assign(
|
|
213
|
+
Object.assign({}, composerJson.require),
|
|
214
|
+
{ "ramsey/uuid": "5.x-dev", "hidehalo/nanoid-php": "1.x-dev" }
|
|
215
|
+
);
|
|
216
|
+
}
|
|
217
|
+
// Write the modified composer.json back to the file
|
|
218
|
+
fs.writeFileSync(composerJsonPath, JSON.stringify(composerJson, null, 2));
|
|
219
|
+
console.log("composer.json updated successfully.");
|
|
195
220
|
}
|
|
196
221
|
async function updateIndexJsForWebSocket(baseDir, answer) {
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
const webSocketCode = `
|
|
222
|
+
if (!answer.websocket) {
|
|
223
|
+
return;
|
|
224
|
+
}
|
|
225
|
+
const indexPath = path.join(baseDir, "src", "app", "js", "index.js");
|
|
226
|
+
if (checkExcludeFiles(indexPath)) return;
|
|
227
|
+
let indexContent = fs.readFileSync(indexPath, "utf8");
|
|
228
|
+
// WebSocket initialization code to be appended
|
|
229
|
+
const webSocketCode = `
|
|
206
230
|
// WebSocket initialization
|
|
207
231
|
const ws = new WebSocket("ws://localhost:8080");
|
|
208
232
|
`;
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
233
|
+
// Append WebSocket code if user chose to use WebSocket
|
|
234
|
+
indexContent += webSocketCode;
|
|
235
|
+
fs.writeFileSync(indexPath, indexContent, "utf8");
|
|
236
|
+
console.log("WebSocket code added to index.js successfully.");
|
|
213
237
|
}
|
|
214
238
|
// This function updates the .gitignore file
|
|
215
239
|
async function createUpdateGitignoreFile(baseDir, additions) {
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
fs.writeFileSync(gitignorePath, gitignoreContent);
|
|
240
|
+
const gitignorePath = path.join(baseDir, ".gitignore");
|
|
241
|
+
if (checkExcludeFiles(gitignorePath)) return;
|
|
242
|
+
let gitignoreContent = "";
|
|
243
|
+
additions.forEach((addition) => {
|
|
244
|
+
if (!gitignoreContent.includes(addition)) {
|
|
245
|
+
gitignoreContent += `\n${addition}`;
|
|
246
|
+
}
|
|
247
|
+
});
|
|
248
|
+
// Ensure there's no leading newline if the file was just created
|
|
249
|
+
gitignoreContent = gitignoreContent.trimStart();
|
|
250
|
+
fs.writeFileSync(gitignorePath, gitignoreContent);
|
|
228
251
|
}
|
|
229
252
|
// Recursive copy function
|
|
230
253
|
function copyRecursiveSync(src, dest, answer) {
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
254
|
+
var _a;
|
|
255
|
+
console.log("🚀 ~ copyRecursiveSync ~ dest:", dest);
|
|
256
|
+
console.log("🚀 ~ copyRecursiveSync ~ src:", src);
|
|
257
|
+
const exists = fs.existsSync(src);
|
|
258
|
+
const stats = exists && fs.statSync(src);
|
|
259
|
+
const isDirectory = exists && stats && stats.isDirectory();
|
|
260
|
+
if (isDirectory) {
|
|
261
|
+
const destLower = dest.toLowerCase();
|
|
262
|
+
if (!answer.websocket && destLower.includes("src\\lib\\websocket")) return;
|
|
263
|
+
if (!answer.prisma && destLower.includes("src\\lib\\prisma")) return;
|
|
264
|
+
if (
|
|
265
|
+
(answer.backendOnly && destLower.includes("src\\app\\js")) ||
|
|
266
|
+
(answer.backendOnly && destLower.includes("src\\app\\css"))
|
|
267
|
+
)
|
|
268
|
+
return;
|
|
269
|
+
if (!answer.swaggerDocs && destLower.includes("src\\app\\swagger-docs"))
|
|
270
|
+
return;
|
|
271
|
+
const destModified = dest.replace(/\\/g, "/");
|
|
272
|
+
if (
|
|
273
|
+
(_a =
|
|
274
|
+
updateAnswer === null || updateAnswer === void 0
|
|
275
|
+
? void 0
|
|
276
|
+
: updateAnswer.excludeFilePath) === null || _a === void 0
|
|
277
|
+
? void 0
|
|
278
|
+
: _a.includes(destModified)
|
|
279
|
+
)
|
|
280
|
+
return;
|
|
281
|
+
if (!fs.existsSync(dest)) fs.mkdirSync(dest, { recursive: true });
|
|
282
|
+
fs.readdirSync(src).forEach((childItemName) => {
|
|
283
|
+
copyRecursiveSync(
|
|
284
|
+
path.join(src, childItemName),
|
|
285
|
+
path.join(dest, childItemName),
|
|
286
|
+
answer
|
|
287
|
+
);
|
|
288
|
+
});
|
|
289
|
+
} else {
|
|
290
|
+
if (checkExcludeFiles(dest)) return;
|
|
291
|
+
if (
|
|
292
|
+
!answer.tailwindcss &&
|
|
293
|
+
(dest.includes("tailwind.css") || dest.includes("styles.css"))
|
|
294
|
+
)
|
|
295
|
+
return;
|
|
296
|
+
if (
|
|
297
|
+
!answer.websocket &&
|
|
298
|
+
(dest.includes("restart-websocket.cjs") ||
|
|
299
|
+
dest.includes("restart-websocket.bat"))
|
|
300
|
+
)
|
|
301
|
+
return;
|
|
302
|
+
if (!answer.docker && dockerFiles.some((file) => dest.includes(file))) {
|
|
303
|
+
return;
|
|
256
304
|
}
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
return;
|
|
263
|
-
if (!answer.websocket &&
|
|
264
|
-
(dest.includes("restart-websocket.cjs") ||
|
|
265
|
-
dest.includes("restart-websocket.bat")))
|
|
266
|
-
return;
|
|
267
|
-
if (!answer.docker && dockerFiles.some((file) => dest.includes(file))) {
|
|
268
|
-
return;
|
|
269
|
-
}
|
|
270
|
-
if (answer.backendOnly &&
|
|
271
|
-
nonBackendFiles.some((file) => dest.includes(file))) {
|
|
272
|
-
return;
|
|
273
|
-
}
|
|
274
|
-
if (!answer.backendOnly && dest.includes("route.php"))
|
|
275
|
-
return;
|
|
276
|
-
if (!answer.swaggerDocs && dest.includes("swagger-setup.js")) {
|
|
277
|
-
return;
|
|
278
|
-
}
|
|
279
|
-
fs.copyFileSync(src, dest, 0);
|
|
305
|
+
if (
|
|
306
|
+
answer.backendOnly &&
|
|
307
|
+
nonBackendFiles.some((file) => dest.includes(file))
|
|
308
|
+
) {
|
|
309
|
+
return;
|
|
280
310
|
}
|
|
311
|
+
if (!answer.backendOnly && dest.includes("route.php")) return;
|
|
312
|
+
if (!answer.swaggerDocs && dest.includes("swagger-setup.js")) {
|
|
313
|
+
return;
|
|
314
|
+
}
|
|
315
|
+
fs.copyFileSync(src, dest, 0);
|
|
316
|
+
}
|
|
281
317
|
}
|
|
282
318
|
// Function to execute the recursive copy for entire directories
|
|
283
319
|
async function executeCopy(baseDir, directoriesToCopy, answer) {
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
320
|
+
directoriesToCopy.forEach(({ srcDir, destDir }) => {
|
|
321
|
+
const sourcePath = path.join(__dirname, srcDir);
|
|
322
|
+
const destPath = path.join(baseDir, destDir);
|
|
323
|
+
copyRecursiveSync(sourcePath, destPath, answer);
|
|
324
|
+
});
|
|
289
325
|
}
|
|
290
326
|
function createOrUpdateTailwindConfig(baseDir) {
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
327
|
+
console.log("🚀 ~ createOrUpdateTailwindConfig ~ baseDir:", baseDir);
|
|
328
|
+
const filePath = path.join(baseDir, "tailwind.config.js");
|
|
329
|
+
if (checkExcludeFiles(filePath)) return;
|
|
330
|
+
const newContent = [
|
|
331
|
+
"./src/**/*.{html,js,php}",
|
|
332
|
+
// Add more paths as needed
|
|
333
|
+
];
|
|
334
|
+
let configData = fs.readFileSync(filePath, "utf8");
|
|
335
|
+
console.log("🚀 ~ createOrUpdateTailwindConfig ~ configData:", configData);
|
|
336
|
+
const contentArrayString = newContent
|
|
337
|
+
.map((item) => ` "${item}"`)
|
|
338
|
+
.join(",\n");
|
|
339
|
+
configData = configData.replace(
|
|
340
|
+
/content: \[\],/g,
|
|
341
|
+
`content: [\n${contentArrayString}\n],`
|
|
342
|
+
);
|
|
343
|
+
fs.writeFileSync(filePath, configData, { flag: "w" });
|
|
344
|
+
console.log(chalk.green("Tailwind configuration updated successfully."));
|
|
307
345
|
}
|
|
308
346
|
function modifyPostcssConfig(baseDir) {
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
const newContent = `export default {
|
|
347
|
+
const filePath = path.join(baseDir, "postcss.config.js");
|
|
348
|
+
if (checkExcludeFiles(filePath)) return;
|
|
349
|
+
const newContent = `export default {
|
|
313
350
|
plugins: {
|
|
314
351
|
tailwindcss: {},
|
|
315
352
|
autoprefixer: {},
|
|
316
353
|
cssnano: {},
|
|
317
354
|
},
|
|
318
355
|
};`;
|
|
319
|
-
|
|
320
|
-
|
|
356
|
+
fs.writeFileSync(filePath, newContent, { flag: "w" });
|
|
357
|
+
console.log(chalk.green("postcss.config.js updated successfully."));
|
|
321
358
|
}
|
|
322
359
|
function modifyLayoutPHP(baseDir, answer) {
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
stylesAndLinks = `\n <link href="<?= $baseUrl; ?>/css/index.css" rel="stylesheet">\n <script src="<?= $baseUrl; ?>/js/index.js"></script>`;
|
|
331
|
-
}
|
|
332
|
-
// Tailwind CSS link or CDN script
|
|
333
|
-
let tailwindLink = "";
|
|
334
|
-
if (!answer.backendOnly) {
|
|
335
|
-
tailwindLink = answer.tailwindcss
|
|
336
|
-
? ` <link href="<?= $baseUrl; ?>/css/styles.css" rel="stylesheet"> ${stylesAndLinks}`
|
|
337
|
-
: ` <script src="https://cdn.tailwindcss.com"></script> ${stylesAndLinks}`;
|
|
338
|
-
}
|
|
339
|
-
// Insert before the closing </head> tag
|
|
340
|
-
const breakLine = tailwindLink.length > 0 ? "\n" : "";
|
|
341
|
-
indexContent = indexContent.replace("</head>", `${tailwindLink}${breakLine} <!-- Dynamic Head -->
|
|
342
|
-
<?= implode("\\n", $mainLayoutHead); ?>
|
|
343
|
-
</head>`);
|
|
344
|
-
fs.writeFileSync(layoutPath, indexContent, { flag: "w" });
|
|
345
|
-
console.log(chalk.green(`layout.php modified successfully for ${answer.tailwindcss ? "local Tailwind CSS" : "Tailwind CSS CDN"}.`));
|
|
360
|
+
const layoutPath = path.join(baseDir, "src", "app", "layout.php");
|
|
361
|
+
if (checkExcludeFiles(layoutPath)) return;
|
|
362
|
+
try {
|
|
363
|
+
let indexContent = fs.readFileSync(layoutPath, "utf8");
|
|
364
|
+
let stylesAndLinks = "";
|
|
365
|
+
if (!answer.backendOnly) {
|
|
366
|
+
stylesAndLinks = `\n <link href="<?= $baseUrl; ?>/css/index.css" rel="stylesheet">\n <script src="<?= $baseUrl; ?>/js/index.js"></script>`;
|
|
346
367
|
}
|
|
347
|
-
|
|
348
|
-
|
|
368
|
+
// Tailwind CSS link or CDN script
|
|
369
|
+
let tailwindLink = "";
|
|
370
|
+
if (!answer.backendOnly) {
|
|
371
|
+
tailwindLink = answer.tailwindcss
|
|
372
|
+
? ` <link href="<?= $baseUrl; ?>/css/styles.css" rel="stylesheet"> ${stylesAndLinks}`
|
|
373
|
+
: ` <script src="https://cdn.tailwindcss.com"></script> ${stylesAndLinks}`;
|
|
349
374
|
}
|
|
375
|
+
// Insert before the closing </head> tag
|
|
376
|
+
const breakLine = tailwindLink.length > 0 ? "\n" : "";
|
|
377
|
+
indexContent = indexContent.replace(
|
|
378
|
+
"</head>",
|
|
379
|
+
`${tailwindLink}${breakLine} <!-- Dynamic Head -->
|
|
380
|
+
<?= implode("\\n", $mainLayoutHead); ?>
|
|
381
|
+
</head>`
|
|
382
|
+
);
|
|
383
|
+
fs.writeFileSync(layoutPath, indexContent, { flag: "w" });
|
|
384
|
+
console.log(
|
|
385
|
+
chalk.green(
|
|
386
|
+
`layout.php modified successfully for ${
|
|
387
|
+
answer.tailwindcss ? "local Tailwind CSS" : "Tailwind CSS CDN"
|
|
388
|
+
}.`
|
|
389
|
+
)
|
|
390
|
+
);
|
|
391
|
+
} catch (error) {
|
|
392
|
+
console.error(chalk.red("Error modifying layout.php:"), error);
|
|
393
|
+
}
|
|
350
394
|
}
|
|
351
395
|
// This function updates or creates the .env file
|
|
352
396
|
async function createOrUpdateEnvFile(baseDir, content) {
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
fs.writeFileSync(envPath, content, { flag: "w" });
|
|
397
|
+
const envPath = path.join(baseDir, ".env");
|
|
398
|
+
if (checkExcludeFiles(envPath)) return;
|
|
399
|
+
console.log("🚀 ~ content:", content);
|
|
400
|
+
fs.writeFileSync(envPath, content, { flag: "w" });
|
|
358
401
|
}
|
|
359
402
|
function checkExcludeFiles(destPath) {
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
403
|
+
var _a, _b;
|
|
404
|
+
if (
|
|
405
|
+
!(updateAnswer === null || updateAnswer === void 0
|
|
406
|
+
? void 0
|
|
407
|
+
: updateAnswer.isUpdate)
|
|
408
|
+
)
|
|
409
|
+
return false;
|
|
410
|
+
return (_b =
|
|
411
|
+
(_a =
|
|
412
|
+
updateAnswer === null || updateAnswer === void 0
|
|
413
|
+
? void 0
|
|
414
|
+
: updateAnswer.excludeFilePath) === null || _a === void 0
|
|
415
|
+
? void 0
|
|
416
|
+
: _a.includes(destPath.replace(/\\/g, "/"))) !== null && _b !== void 0
|
|
417
|
+
? _b
|
|
418
|
+
: false;
|
|
364
419
|
}
|
|
365
420
|
async function createDirectoryStructure(baseDir, answer) {
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
421
|
+
console.log("🚀 ~ baseDir:", baseDir);
|
|
422
|
+
console.log("🚀 ~ answer:", answer);
|
|
423
|
+
const filesToCopy = [
|
|
424
|
+
{ src: "/bootstrap.php", dest: "/bootstrap.php" },
|
|
425
|
+
{ src: "/.htaccess", dest: "/.htaccess" },
|
|
426
|
+
{ src: "/../composer.json", dest: "/composer.json" },
|
|
427
|
+
];
|
|
428
|
+
if (
|
|
429
|
+
updateAnswer === null || updateAnswer === void 0
|
|
430
|
+
? void 0
|
|
431
|
+
: updateAnswer.isUpdate
|
|
432
|
+
) {
|
|
433
|
+
filesToCopy.push({ src: "/tsconfig.json", dest: "/tsconfig.json" });
|
|
434
|
+
if (updateAnswer.tailwindcss) {
|
|
435
|
+
filesToCopy.push(
|
|
436
|
+
{ src: "/postcss.config.js", dest: "/postcss.config.js" },
|
|
437
|
+
{ src: "/tailwind.config.js", dest: "/tailwind.config.js" }
|
|
438
|
+
);
|
|
378
439
|
}
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
}
|
|
395
|
-
if (answer.prisma) {
|
|
396
|
-
directoriesToCopy.push({
|
|
397
|
-
srcDir: "/prisma",
|
|
398
|
-
destDir: "/prisma",
|
|
399
|
-
});
|
|
400
|
-
}
|
|
401
|
-
if (answer.docker) {
|
|
402
|
-
directoriesToCopy.push({ srcDir: "/.dockerignore", destDir: "/.dockerignore" }, { srcDir: "/docker-compose.yml", destDir: "/docker-compose.yml" }, { srcDir: "/Dockerfile", destDir: "/Dockerfile" }, { srcDir: "/apache.conf", destDir: "/apache.conf" });
|
|
403
|
-
}
|
|
404
|
-
console.log("🚀 ~ directoriesToCopy:", directoriesToCopy);
|
|
405
|
-
filesToCopy.forEach(({ src, dest }) => {
|
|
406
|
-
const sourcePath = path.join(__dirname, src);
|
|
407
|
-
const destPath = path.join(baseDir, dest);
|
|
408
|
-
if (checkExcludeFiles(destPath))
|
|
409
|
-
return;
|
|
410
|
-
const code = fs.readFileSync(sourcePath, "utf8");
|
|
411
|
-
fs.writeFileSync(destPath, code, { flag: "w" });
|
|
440
|
+
}
|
|
441
|
+
const directoriesToCopy = [
|
|
442
|
+
{
|
|
443
|
+
srcDir: "/settings",
|
|
444
|
+
destDir: "/settings",
|
|
445
|
+
},
|
|
446
|
+
{
|
|
447
|
+
srcDir: "/src",
|
|
448
|
+
destDir: "/src",
|
|
449
|
+
},
|
|
450
|
+
];
|
|
451
|
+
if (answer.backendOnly && answer.swaggerDocs) {
|
|
452
|
+
directoriesToCopy.push({
|
|
453
|
+
srcDir: "/swagger-docs-layout.php",
|
|
454
|
+
destDir: "/src/app/layout.php",
|
|
412
455
|
});
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
}
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
456
|
+
}
|
|
457
|
+
if (answer.prisma) {
|
|
458
|
+
directoriesToCopy.push({
|
|
459
|
+
srcDir: "/prisma",
|
|
460
|
+
destDir: "/prisma",
|
|
461
|
+
});
|
|
462
|
+
}
|
|
463
|
+
if (answer.docker) {
|
|
464
|
+
directoriesToCopy.push(
|
|
465
|
+
{ srcDir: "/.dockerignore", destDir: "/.dockerignore" },
|
|
466
|
+
{ srcDir: "/docker-compose.yml", destDir: "/docker-compose.yml" },
|
|
467
|
+
{ srcDir: "/Dockerfile", destDir: "/Dockerfile" },
|
|
468
|
+
{ srcDir: "/apache.conf", destDir: "/apache.conf" }
|
|
469
|
+
);
|
|
470
|
+
}
|
|
471
|
+
console.log("🚀 ~ directoriesToCopy:", directoriesToCopy);
|
|
472
|
+
filesToCopy.forEach(({ src, dest }) => {
|
|
473
|
+
const sourcePath = path.join(__dirname, src);
|
|
474
|
+
const destPath = path.join(baseDir, dest);
|
|
475
|
+
if (checkExcludeFiles(destPath)) return;
|
|
476
|
+
const code = fs.readFileSync(sourcePath, "utf8");
|
|
477
|
+
fs.writeFileSync(destPath, code, { flag: "w" });
|
|
478
|
+
});
|
|
479
|
+
await executeCopy(baseDir, directoriesToCopy, answer);
|
|
480
|
+
await updatePackageJson(baseDir, answer);
|
|
481
|
+
await updateComposerJson(baseDir, answer);
|
|
482
|
+
if (!answer.backendOnly) {
|
|
483
|
+
await updateIndexJsForWebSocket(baseDir, answer);
|
|
484
|
+
}
|
|
485
|
+
if (answer.tailwindcss) {
|
|
486
|
+
createOrUpdateTailwindConfig(baseDir);
|
|
487
|
+
modifyPostcssConfig(baseDir);
|
|
488
|
+
}
|
|
489
|
+
if (answer.tailwindcss || !answer.backendOnly || answer.swaggerDocs) {
|
|
490
|
+
modifyLayoutPHP(baseDir, answer);
|
|
491
|
+
}
|
|
492
|
+
const prismaPHPEnvContent = `# Prisma PHP Auth Secret Key For development only - Change this in production
|
|
427
493
|
AUTH_SECRET=uxsjXVPHN038DEYls2Kw0QUgBcXKUyrjv416nIFWPY4=
|
|
428
494
|
|
|
429
495
|
# PHPMailer
|
|
@@ -446,164 +512,200 @@ APP_TIMEZONE="UTC"
|
|
|
446
512
|
|
|
447
513
|
# APP ENV - Set your application environment - Default is "development" - Change this in production to "production"
|
|
448
514
|
APP_ENV=development`;
|
|
449
|
-
|
|
450
|
-
|
|
515
|
+
if (answer.prisma) {
|
|
516
|
+
const prismaEnvContent = `# Environment variables declared in this file are automatically made available to Prisma.
|
|
451
517
|
# See the documentation for more detail: https://pris.ly/d/prisma-schema#accessing-environment-variables-from-the-schema
|
|
452
518
|
|
|
453
519
|
# Prisma supports the native connection string format for PostgreSQL, MySQL, SQLite, SQL Server, MongoDB and CockroachDB.
|
|
454
520
|
# See the documentation for all the connection string options: https://pris.ly/d/connection-strings
|
|
455
521
|
|
|
456
522
|
DATABASE_URL="postgresql://johndoe:randompassword@localhost:5432/mydb?schema=public"`;
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
await createUpdateGitignoreFile(baseDir, ["vendor", ".env", "node_modules"]);
|
|
523
|
+
const envContent = `${prismaEnvContent}\n\n${prismaPHPEnvContent}`;
|
|
524
|
+
await createOrUpdateEnvFile(baseDir, envContent);
|
|
525
|
+
} else {
|
|
526
|
+
await createOrUpdateEnvFile(baseDir, prismaPHPEnvContent);
|
|
527
|
+
}
|
|
528
|
+
// Add vendor to .gitignore
|
|
529
|
+
await createUpdateGitignoreFile(baseDir, ["vendor", ".env", "node_modules"]);
|
|
465
530
|
}
|
|
466
531
|
async function getAnswer(predefinedAnswers = {}) {
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
532
|
+
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o;
|
|
533
|
+
console.log("🚀 ~ predefinedAnswers:", predefinedAnswers);
|
|
534
|
+
const questionsArray = [];
|
|
535
|
+
if (!predefinedAnswers.projectName) {
|
|
536
|
+
questionsArray.push({
|
|
537
|
+
type: "text",
|
|
538
|
+
name: "projectName",
|
|
539
|
+
message: "What is your project named?",
|
|
540
|
+
initial: "my-app",
|
|
541
|
+
});
|
|
542
|
+
}
|
|
543
|
+
if (!predefinedAnswers.backendOnly) {
|
|
544
|
+
questionsArray.push({
|
|
545
|
+
type: "toggle",
|
|
546
|
+
name: "backendOnly",
|
|
547
|
+
message: "Would you like to create a backend-only project?",
|
|
548
|
+
initial: false,
|
|
549
|
+
active: "Yes",
|
|
550
|
+
inactive: "No",
|
|
551
|
+
});
|
|
552
|
+
}
|
|
553
|
+
// Execute the initial questionsArray first
|
|
554
|
+
const onCancel = () => {
|
|
555
|
+
console.log(chalk.red("Operation cancelled by the user."));
|
|
556
|
+
process.exit(0);
|
|
557
|
+
};
|
|
558
|
+
const initialResponse = await prompts(questionsArray, { onCancel });
|
|
559
|
+
console.log("🚀 ~ initialResponse:", initialResponse);
|
|
560
|
+
const nonBackendOnlyQuestionsArray = [];
|
|
561
|
+
if (initialResponse.backendOnly || predefinedAnswers.backendOnly) {
|
|
562
|
+
// If it's a backend-only project, skip Tailwind CSS, but ask other questions
|
|
563
|
+
if (!predefinedAnswers.swaggerDocs) {
|
|
564
|
+
nonBackendOnlyQuestionsArray.push({
|
|
565
|
+
type: "toggle",
|
|
566
|
+
name: "swaggerDocs",
|
|
567
|
+
message: `Would you like to use ${chalk.blue("Swagger Docs")}?`,
|
|
568
|
+
initial: false,
|
|
569
|
+
active: "Yes",
|
|
570
|
+
inactive: "No",
|
|
571
|
+
});
|
|
477
572
|
}
|
|
478
|
-
if (!predefinedAnswers.
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
573
|
+
if (!predefinedAnswers.websocket) {
|
|
574
|
+
nonBackendOnlyQuestionsArray.push({
|
|
575
|
+
type: "toggle",
|
|
576
|
+
name: "websocket",
|
|
577
|
+
message: `Would you like to use ${chalk.blue("Websocket")}?`,
|
|
578
|
+
initial: true,
|
|
579
|
+
active: "Yes",
|
|
580
|
+
inactive: "No",
|
|
581
|
+
});
|
|
487
582
|
}
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
// If it's a backend-only project, skip Tailwind CSS, but ask other questions
|
|
498
|
-
if (!predefinedAnswers.swaggerDocs) {
|
|
499
|
-
nonBackendOnlyQuestionsArray.push({
|
|
500
|
-
type: "toggle",
|
|
501
|
-
name: "swaggerDocs",
|
|
502
|
-
message: `Would you like to use ${chalk.blue("Swagger Docs")}?`,
|
|
503
|
-
initial: false,
|
|
504
|
-
active: "Yes",
|
|
505
|
-
inactive: "No",
|
|
506
|
-
});
|
|
507
|
-
}
|
|
508
|
-
if (!predefinedAnswers.websocket) {
|
|
509
|
-
nonBackendOnlyQuestionsArray.push({
|
|
510
|
-
type: "toggle",
|
|
511
|
-
name: "websocket",
|
|
512
|
-
message: `Would you like to use ${chalk.blue("Websocket")}?`,
|
|
513
|
-
initial: true,
|
|
514
|
-
active: "Yes",
|
|
515
|
-
inactive: "No",
|
|
516
|
-
});
|
|
517
|
-
}
|
|
518
|
-
if (!predefinedAnswers.prisma) {
|
|
519
|
-
nonBackendOnlyQuestionsArray.push({
|
|
520
|
-
type: "toggle",
|
|
521
|
-
name: "prisma",
|
|
522
|
-
message: `Would you like to use ${chalk.blue("Prisma PHP ORM")}?`,
|
|
523
|
-
initial: true,
|
|
524
|
-
active: "Yes",
|
|
525
|
-
inactive: "No",
|
|
526
|
-
});
|
|
527
|
-
}
|
|
528
|
-
if (!predefinedAnswers.docker) {
|
|
529
|
-
nonBackendOnlyQuestionsArray.push({
|
|
530
|
-
type: "toggle",
|
|
531
|
-
name: "docker",
|
|
532
|
-
message: `Would you like to use ${chalk.blue("Docker")}?`,
|
|
533
|
-
initial: false,
|
|
534
|
-
active: "Yes",
|
|
535
|
-
inactive: "No",
|
|
536
|
-
});
|
|
537
|
-
}
|
|
583
|
+
if (!predefinedAnswers.prisma) {
|
|
584
|
+
nonBackendOnlyQuestionsArray.push({
|
|
585
|
+
type: "toggle",
|
|
586
|
+
name: "prisma",
|
|
587
|
+
message: `Would you like to use ${chalk.blue("Prisma PHP ORM")}?`,
|
|
588
|
+
initial: true,
|
|
589
|
+
active: "Yes",
|
|
590
|
+
inactive: "No",
|
|
591
|
+
});
|
|
538
592
|
}
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
inactive: "No",
|
|
549
|
-
});
|
|
550
|
-
}
|
|
551
|
-
if (!predefinedAnswers.tailwindcss) {
|
|
552
|
-
nonBackendOnlyQuestionsArray.push({
|
|
553
|
-
type: "toggle",
|
|
554
|
-
name: "tailwindcss",
|
|
555
|
-
message: `Would you like to use ${chalk.blue("Tailwind CSS")}?`,
|
|
556
|
-
initial: true,
|
|
557
|
-
active: "Yes",
|
|
558
|
-
inactive: "No",
|
|
559
|
-
});
|
|
560
|
-
}
|
|
561
|
-
if (!predefinedAnswers.websocket) {
|
|
562
|
-
nonBackendOnlyQuestionsArray.push({
|
|
563
|
-
type: "toggle",
|
|
564
|
-
name: "websocket",
|
|
565
|
-
message: `Would you like to use ${chalk.blue("Websocket")}?`,
|
|
566
|
-
initial: true,
|
|
567
|
-
active: "Yes",
|
|
568
|
-
inactive: "No",
|
|
569
|
-
});
|
|
570
|
-
}
|
|
571
|
-
if (!predefinedAnswers.prisma) {
|
|
572
|
-
nonBackendOnlyQuestionsArray.push({
|
|
573
|
-
type: "toggle",
|
|
574
|
-
name: "prisma",
|
|
575
|
-
message: `Would you like to use ${chalk.blue("Prisma PHP ORM")}?`,
|
|
576
|
-
initial: true,
|
|
577
|
-
active: "Yes",
|
|
578
|
-
inactive: "No",
|
|
579
|
-
});
|
|
580
|
-
}
|
|
581
|
-
if (!predefinedAnswers.docker) {
|
|
582
|
-
nonBackendOnlyQuestionsArray.push({
|
|
583
|
-
type: "toggle",
|
|
584
|
-
name: "docker",
|
|
585
|
-
message: `Would you like to use ${chalk.blue("Docker")}?`,
|
|
586
|
-
initial: false,
|
|
587
|
-
active: "Yes",
|
|
588
|
-
inactive: "No",
|
|
589
|
-
});
|
|
590
|
-
}
|
|
593
|
+
if (!predefinedAnswers.docker) {
|
|
594
|
+
nonBackendOnlyQuestionsArray.push({
|
|
595
|
+
type: "toggle",
|
|
596
|
+
name: "docker",
|
|
597
|
+
message: `Would you like to use ${chalk.blue("Docker")}?`,
|
|
598
|
+
initial: false,
|
|
599
|
+
active: "Yes",
|
|
600
|
+
inactive: "No",
|
|
601
|
+
});
|
|
591
602
|
}
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
603
|
+
} else {
|
|
604
|
+
// If it's not a backend-only project, ask Tailwind CSS as well
|
|
605
|
+
if (!predefinedAnswers.swaggerDocs) {
|
|
606
|
+
nonBackendOnlyQuestionsArray.push({
|
|
607
|
+
type: "toggle",
|
|
608
|
+
name: "swaggerDocs",
|
|
609
|
+
message: `Would you like to use ${chalk.blue("Swagger Docs")}?`,
|
|
610
|
+
initial: false,
|
|
611
|
+
active: "Yes",
|
|
612
|
+
inactive: "No",
|
|
613
|
+
});
|
|
614
|
+
}
|
|
615
|
+
if (!predefinedAnswers.tailwindcss) {
|
|
616
|
+
nonBackendOnlyQuestionsArray.push({
|
|
617
|
+
type: "toggle",
|
|
618
|
+
name: "tailwindcss",
|
|
619
|
+
message: `Would you like to use ${chalk.blue("Tailwind CSS")}?`,
|
|
620
|
+
initial: true,
|
|
621
|
+
active: "Yes",
|
|
622
|
+
inactive: "No",
|
|
623
|
+
});
|
|
624
|
+
}
|
|
625
|
+
if (!predefinedAnswers.websocket) {
|
|
626
|
+
nonBackendOnlyQuestionsArray.push({
|
|
627
|
+
type: "toggle",
|
|
628
|
+
name: "websocket",
|
|
629
|
+
message: `Would you like to use ${chalk.blue("Websocket")}?`,
|
|
630
|
+
initial: true,
|
|
631
|
+
active: "Yes",
|
|
632
|
+
inactive: "No",
|
|
633
|
+
});
|
|
634
|
+
}
|
|
635
|
+
if (!predefinedAnswers.prisma) {
|
|
636
|
+
nonBackendOnlyQuestionsArray.push({
|
|
637
|
+
type: "toggle",
|
|
638
|
+
name: "prisma",
|
|
639
|
+
message: `Would you like to use ${chalk.blue("Prisma PHP ORM")}?`,
|
|
640
|
+
initial: true,
|
|
641
|
+
active: "Yes",
|
|
642
|
+
inactive: "No",
|
|
643
|
+
});
|
|
644
|
+
}
|
|
645
|
+
if (!predefinedAnswers.docker) {
|
|
646
|
+
nonBackendOnlyQuestionsArray.push({
|
|
647
|
+
type: "toggle",
|
|
648
|
+
name: "docker",
|
|
649
|
+
message: `Would you like to use ${chalk.blue("Docker")}?`,
|
|
650
|
+
initial: false,
|
|
651
|
+
active: "Yes",
|
|
652
|
+
inactive: "No",
|
|
653
|
+
});
|
|
654
|
+
}
|
|
655
|
+
}
|
|
656
|
+
const nonBackendOnlyResponse = await prompts(nonBackendOnlyQuestionsArray, {
|
|
657
|
+
onCancel,
|
|
658
|
+
});
|
|
659
|
+
console.log("🚀 ~ nonBackendOnlyResponse:", nonBackendOnlyResponse);
|
|
660
|
+
return {
|
|
661
|
+
projectName: initialResponse.projectName
|
|
662
|
+
? String(initialResponse.projectName).trim().replace(/ /g, "-")
|
|
663
|
+
: (_a = predefinedAnswers.projectName) !== null && _a !== void 0
|
|
664
|
+
? _a
|
|
665
|
+
: "my-app",
|
|
666
|
+
backendOnly:
|
|
667
|
+
(_c =
|
|
668
|
+
(_b = initialResponse.backendOnly) !== null && _b !== void 0
|
|
669
|
+
? _b
|
|
670
|
+
: predefinedAnswers.backendOnly) !== null && _c !== void 0
|
|
671
|
+
? _c
|
|
672
|
+
: false,
|
|
673
|
+
swaggerDocs:
|
|
674
|
+
(_e =
|
|
675
|
+
(_d = nonBackendOnlyResponse.swaggerDocs) !== null && _d !== void 0
|
|
676
|
+
? _d
|
|
677
|
+
: predefinedAnswers.swaggerDocs) !== null && _e !== void 0
|
|
678
|
+
? _e
|
|
679
|
+
: false,
|
|
680
|
+
tailwindcss:
|
|
681
|
+
(_g =
|
|
682
|
+
(_f = nonBackendOnlyResponse.tailwindcss) !== null && _f !== void 0
|
|
683
|
+
? _f
|
|
684
|
+
: predefinedAnswers.tailwindcss) !== null && _g !== void 0
|
|
685
|
+
? _g
|
|
686
|
+
: false,
|
|
687
|
+
websocket:
|
|
688
|
+
(_j =
|
|
689
|
+
(_h = nonBackendOnlyResponse.websocket) !== null && _h !== void 0
|
|
690
|
+
? _h
|
|
691
|
+
: predefinedAnswers.websocket) !== null && _j !== void 0
|
|
692
|
+
? _j
|
|
693
|
+
: false,
|
|
694
|
+
prisma:
|
|
695
|
+
(_l =
|
|
696
|
+
(_k = nonBackendOnlyResponse.prisma) !== null && _k !== void 0
|
|
697
|
+
? _k
|
|
698
|
+
: predefinedAnswers.prisma) !== null && _l !== void 0
|
|
699
|
+
? _l
|
|
700
|
+
: false,
|
|
701
|
+
docker:
|
|
702
|
+
(_o =
|
|
703
|
+
(_m = nonBackendOnlyResponse.docker) !== null && _m !== void 0
|
|
704
|
+
? _m
|
|
705
|
+
: predefinedAnswers.docker) !== null && _o !== void 0
|
|
706
|
+
? _o
|
|
707
|
+
: false,
|
|
708
|
+
};
|
|
607
709
|
}
|
|
608
710
|
/**
|
|
609
711
|
* Install dependencies in the specified directory.
|
|
@@ -612,352 +714,454 @@ async function getAnswer(predefinedAnswers = {}) {
|
|
|
612
714
|
* @param {boolean} [isDev=false] - Whether to install the dependencies as devDependencies.
|
|
613
715
|
*/
|
|
614
716
|
async function installDependencies(baseDir, dependencies, isDev = false) {
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
});
|
|
622
|
-
// Log the dependencies being installed
|
|
623
|
-
console.log(`${isDev ? "Installing development dependencies" : "Installing dependencies"}:`);
|
|
624
|
-
dependencies.forEach((dep) => console.log(`- ${chalk.blue(dep)}`));
|
|
625
|
-
// Prepare the npm install command with the appropriate flag for dev dependencies
|
|
626
|
-
const npmInstallCommand = `npm install ${isDev ? "--save-dev" : ""} ${dependencies.join(" ")}`;
|
|
627
|
-
// Execute the npm install command
|
|
628
|
-
execSync(npmInstallCommand, {
|
|
629
|
-
stdio: "inherit",
|
|
630
|
-
cwd: baseDir,
|
|
717
|
+
console.log("Initializing new Node.js project...");
|
|
718
|
+
// Initialize a package.json if it doesn't exist
|
|
719
|
+
if (!fs.existsSync(path.join(baseDir, "package.json")))
|
|
720
|
+
execSync("npm init -y", {
|
|
721
|
+
stdio: "inherit",
|
|
722
|
+
cwd: baseDir,
|
|
631
723
|
});
|
|
724
|
+
// Log the dependencies being installed
|
|
725
|
+
console.log(
|
|
726
|
+
`${
|
|
727
|
+
isDev ? "Installing development dependencies" : "Installing dependencies"
|
|
728
|
+
}:`
|
|
729
|
+
);
|
|
730
|
+
dependencies.forEach((dep) => console.log(`- ${chalk.blue(dep)}`));
|
|
731
|
+
// Prepare the npm install command with the appropriate flag for dev dependencies
|
|
732
|
+
const npmInstallCommand = `npm install ${
|
|
733
|
+
isDev ? "--save-dev" : ""
|
|
734
|
+
} ${dependencies.join(" ")}`;
|
|
735
|
+
// Execute the npm install command
|
|
736
|
+
execSync(npmInstallCommand, {
|
|
737
|
+
stdio: "inherit",
|
|
738
|
+
cwd: baseDir,
|
|
739
|
+
});
|
|
632
740
|
}
|
|
633
741
|
async function uninstallDependencies(baseDir, dependencies, isDev = false) {
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
742
|
+
console.log("Uninstalling dependencies:");
|
|
743
|
+
dependencies.forEach((dep) => console.log(`- ${chalk.blue(dep)}`));
|
|
744
|
+
// Prepare the npm uninstall command with the appropriate flag for dev dependencies
|
|
745
|
+
const npmUninstallCommand = `npm uninstall ${
|
|
746
|
+
isDev ? "--save-dev" : "--save"
|
|
747
|
+
} ${dependencies.join(" ")}`;
|
|
748
|
+
// Execute the npm uninstall command
|
|
749
|
+
execSync(npmUninstallCommand, {
|
|
750
|
+
stdio: "inherit",
|
|
751
|
+
cwd: baseDir,
|
|
752
|
+
});
|
|
643
753
|
}
|
|
644
754
|
function fetchPackageVersion(packageName) {
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
});
|
|
755
|
+
return new Promise((resolve, reject) => {
|
|
756
|
+
https
|
|
757
|
+
.get(`https://registry.npmjs.org/${packageName}`, (res) => {
|
|
758
|
+
let data = "";
|
|
759
|
+
res.on("data", (chunk) => (data += chunk));
|
|
760
|
+
res.on("end", () => {
|
|
761
|
+
try {
|
|
762
|
+
const parsed = JSON.parse(data);
|
|
763
|
+
resolve(parsed["dist-tags"].latest);
|
|
764
|
+
} catch (error) {
|
|
765
|
+
reject(new Error("Failed to parse JSON response"));
|
|
766
|
+
}
|
|
767
|
+
});
|
|
768
|
+
})
|
|
769
|
+
.on("error", (err) => reject(err));
|
|
770
|
+
});
|
|
662
771
|
}
|
|
663
772
|
const readJsonFile = (filePath) => {
|
|
664
|
-
|
|
665
|
-
|
|
773
|
+
const jsonData = fs.readFileSync(filePath, "utf8");
|
|
774
|
+
return JSON.parse(jsonData);
|
|
666
775
|
};
|
|
667
776
|
function compareVersions(installedVersion, currentVersion) {
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
return -1;
|
|
676
|
-
}
|
|
777
|
+
const installedVersionArray = installedVersion.split(".").map(Number);
|
|
778
|
+
const currentVersionArray = currentVersion.split(".").map(Number);
|
|
779
|
+
for (let i = 0; i < installedVersionArray.length; i++) {
|
|
780
|
+
if (installedVersionArray[i] > currentVersionArray[i]) {
|
|
781
|
+
return 1;
|
|
782
|
+
} else if (installedVersionArray[i] < currentVersionArray[i]) {
|
|
783
|
+
return -1;
|
|
677
784
|
}
|
|
678
|
-
|
|
785
|
+
}
|
|
786
|
+
return 0;
|
|
679
787
|
}
|
|
680
788
|
function getInstalledPackageVersion(packageName) {
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
}
|
|
692
|
-
catch (error) {
|
|
693
|
-
console.error(error instanceof Error ? error.message : String(error));
|
|
694
|
-
return null;
|
|
789
|
+
try {
|
|
790
|
+
const output = execSync(`npm list -g ${packageName} --depth=0`).toString();
|
|
791
|
+
const versionMatch = output.match(
|
|
792
|
+
new RegExp(`${packageName}@(\\d+\\.\\d+\\.\\d+)`)
|
|
793
|
+
);
|
|
794
|
+
if (versionMatch) {
|
|
795
|
+
return versionMatch[1];
|
|
796
|
+
} else {
|
|
797
|
+
console.error(`Package ${packageName} is not installed`);
|
|
798
|
+
return null;
|
|
695
799
|
}
|
|
800
|
+
} catch (error) {
|
|
801
|
+
console.error(error instanceof Error ? error.message : String(error));
|
|
802
|
+
return null;
|
|
803
|
+
}
|
|
696
804
|
}
|
|
697
805
|
async function main() {
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
806
|
+
var _a, _b, _c, _d, _e, _f, _g, _h, _j;
|
|
807
|
+
try {
|
|
808
|
+
const args = process.argv.slice(2);
|
|
809
|
+
let projectName = args[0];
|
|
810
|
+
let answer = null;
|
|
811
|
+
if (projectName) {
|
|
812
|
+
let useBackendOnly = args.includes("--backend-only");
|
|
813
|
+
let useSwaggerDocs = args.includes("--swagger-docs");
|
|
814
|
+
let useTailwind = args.includes("--tailwindcss");
|
|
815
|
+
let useWebsocket = args.includes("--websocket");
|
|
816
|
+
let usePrisma = args.includes("--prisma");
|
|
817
|
+
let useDocker = args.includes("--docker");
|
|
818
|
+
const predefinedAnswers = {
|
|
819
|
+
projectName,
|
|
820
|
+
backendOnly: useBackendOnly,
|
|
821
|
+
swaggerDocs: useSwaggerDocs,
|
|
822
|
+
tailwindcss: useTailwind,
|
|
823
|
+
websocket: useWebsocket,
|
|
824
|
+
prisma: usePrisma,
|
|
825
|
+
docker: useDocker,
|
|
826
|
+
};
|
|
827
|
+
console.log("🚀 ~ main ~ predefinedAnswers:", predefinedAnswers);
|
|
828
|
+
answer = await getAnswer(predefinedAnswers);
|
|
829
|
+
if (answer === null) {
|
|
830
|
+
console.log(chalk.red("Installation cancelled."));
|
|
831
|
+
return;
|
|
832
|
+
}
|
|
833
|
+
const currentDir = process.cwd();
|
|
834
|
+
const configPath = path.join(currentDir, "prisma-php.json");
|
|
835
|
+
const localSettings = readJsonFile(configPath);
|
|
836
|
+
let excludeFiles = [];
|
|
837
|
+
(_a = localSettings.excludeFiles) === null || _a === void 0
|
|
838
|
+
? void 0
|
|
839
|
+
: _a.map((file) => {
|
|
840
|
+
const filePath = path.join(currentDir, file);
|
|
841
|
+
if (fs.existsSync(filePath))
|
|
842
|
+
excludeFiles.push(filePath.replace(/\\/g, "/"));
|
|
843
|
+
});
|
|
844
|
+
updateAnswer = {
|
|
845
|
+
projectName,
|
|
846
|
+
backendOnly:
|
|
847
|
+
(_b =
|
|
848
|
+
answer === null || answer === void 0
|
|
849
|
+
? void 0
|
|
850
|
+
: answer.backendOnly) !== null && _b !== void 0
|
|
851
|
+
? _b
|
|
852
|
+
: false,
|
|
853
|
+
swaggerDocs:
|
|
854
|
+
(_c =
|
|
855
|
+
answer === null || answer === void 0
|
|
856
|
+
? void 0
|
|
857
|
+
: answer.swaggerDocs) !== null && _c !== void 0
|
|
858
|
+
? _c
|
|
859
|
+
: false,
|
|
860
|
+
tailwindcss:
|
|
861
|
+
(_d =
|
|
862
|
+
answer === null || answer === void 0
|
|
863
|
+
? void 0
|
|
864
|
+
: answer.tailwindcss) !== null && _d !== void 0
|
|
865
|
+
? _d
|
|
866
|
+
: false,
|
|
867
|
+
websocket:
|
|
868
|
+
(_e =
|
|
869
|
+
answer === null || answer === void 0
|
|
870
|
+
? void 0
|
|
871
|
+
: answer.websocket) !== null && _e !== void 0
|
|
872
|
+
? _e
|
|
873
|
+
: false,
|
|
874
|
+
prisma:
|
|
875
|
+
(_f =
|
|
876
|
+
answer === null || answer === void 0 ? void 0 : answer.prisma) !==
|
|
877
|
+
null && _f !== void 0
|
|
878
|
+
? _f
|
|
879
|
+
: false,
|
|
880
|
+
docker:
|
|
881
|
+
(_g =
|
|
882
|
+
answer === null || answer === void 0 ? void 0 : answer.docker) !==
|
|
883
|
+
null && _g !== void 0
|
|
884
|
+
? _g
|
|
885
|
+
: false,
|
|
886
|
+
isUpdate: true,
|
|
887
|
+
excludeFiles:
|
|
888
|
+
(_h = localSettings.excludeFiles) !== null && _h !== void 0 ? _h : [],
|
|
889
|
+
excludeFilePath:
|
|
890
|
+
excludeFiles !== null && excludeFiles !== void 0 ? excludeFiles : [],
|
|
891
|
+
filePath: currentDir,
|
|
892
|
+
};
|
|
893
|
+
} else {
|
|
894
|
+
answer = await getAnswer();
|
|
895
|
+
}
|
|
896
|
+
if (answer === null) {
|
|
897
|
+
console.warn(chalk.red("Installation cancelled."));
|
|
898
|
+
return;
|
|
899
|
+
}
|
|
900
|
+
const latestVersionOfCreatePrismaPhpApp = await fetchPackageVersion(
|
|
901
|
+
"create-prisma-php-app"
|
|
902
|
+
);
|
|
903
|
+
const isCreatePrismaPhpAppInstalled = getInstalledPackageVersion(
|
|
904
|
+
"create-prisma-php-app"
|
|
905
|
+
);
|
|
906
|
+
if (isCreatePrismaPhpAppInstalled) {
|
|
907
|
+
if (
|
|
908
|
+
compareVersions(
|
|
909
|
+
isCreatePrismaPhpAppInstalled,
|
|
910
|
+
latestVersionOfCreatePrismaPhpApp
|
|
911
|
+
) === -1
|
|
912
|
+
) {
|
|
913
|
+
execSync(`npm uninstall -g create-prisma-php-app`, {
|
|
914
|
+
stdio: "inherit",
|
|
915
|
+
});
|
|
916
|
+
execSync(`npm install -g create-prisma-php-app`, {
|
|
917
|
+
stdio: "inherit",
|
|
918
|
+
});
|
|
919
|
+
}
|
|
920
|
+
} else {
|
|
921
|
+
execSync("npm install -g create-prisma-php-app", { stdio: "inherit" });
|
|
922
|
+
}
|
|
923
|
+
const latestVersionOfBrowserSync = await fetchPackageVersion(
|
|
924
|
+
"browser-sync"
|
|
925
|
+
);
|
|
926
|
+
const isBrowserSyncInstalled = getInstalledPackageVersion("browser-sync");
|
|
927
|
+
if (isBrowserSyncInstalled) {
|
|
928
|
+
if (
|
|
929
|
+
compareVersions(isBrowserSyncInstalled, latestVersionOfBrowserSync) ===
|
|
930
|
+
-1
|
|
931
|
+
) {
|
|
932
|
+
execSync(`npm uninstall -g browser-sync`, {
|
|
933
|
+
stdio: "inherit",
|
|
934
|
+
});
|
|
935
|
+
execSync(`npm install -g browser-sync`, {
|
|
936
|
+
stdio: "inherit",
|
|
937
|
+
});
|
|
938
|
+
}
|
|
939
|
+
} else {
|
|
940
|
+
execSync("npm install -g browser-sync", { stdio: "inherit" });
|
|
941
|
+
}
|
|
942
|
+
// Create the project directory
|
|
943
|
+
if (!projectName) fs.mkdirSync(answer.projectName);
|
|
944
|
+
const currentDir = process.cwd();
|
|
945
|
+
let projectPath = projectName
|
|
946
|
+
? currentDir
|
|
947
|
+
: path.join(currentDir, answer.projectName);
|
|
948
|
+
if (!projectName) process.chdir(answer.projectName);
|
|
949
|
+
const dependencies = [
|
|
950
|
+
"typescript",
|
|
951
|
+
"@types/node",
|
|
952
|
+
"ts-node",
|
|
953
|
+
"http-proxy-middleware@^3.0.0",
|
|
954
|
+
"chalk",
|
|
955
|
+
"npm-run-all",
|
|
956
|
+
];
|
|
957
|
+
if (answer.swaggerDocs) {
|
|
958
|
+
dependencies.push("swagger-jsdoc");
|
|
959
|
+
}
|
|
960
|
+
if (answer.tailwindcss) {
|
|
961
|
+
dependencies.push(
|
|
962
|
+
"tailwindcss",
|
|
963
|
+
"autoprefixer",
|
|
964
|
+
"postcss",
|
|
965
|
+
"postcss-cli",
|
|
966
|
+
"cssnano"
|
|
967
|
+
);
|
|
968
|
+
}
|
|
969
|
+
if (answer.websocket) {
|
|
970
|
+
dependencies.push("chokidar-cli");
|
|
971
|
+
}
|
|
972
|
+
if (answer.prisma) {
|
|
973
|
+
dependencies.push("prisma", "@prisma/client");
|
|
974
|
+
}
|
|
975
|
+
await installDependencies(projectPath, dependencies, true);
|
|
976
|
+
if (!projectName) {
|
|
977
|
+
execSync(`npx tsc --init`, { stdio: "inherit" });
|
|
978
|
+
}
|
|
979
|
+
if (answer.tailwindcss)
|
|
980
|
+
execSync(`npx tailwindcss init -p`, { stdio: "inherit" });
|
|
981
|
+
if (answer.prisma) {
|
|
982
|
+
if (!fs.existsSync(path.join(projectPath, "prisma")))
|
|
983
|
+
execSync(`npx prisma init`, { stdio: "inherit" });
|
|
984
|
+
}
|
|
985
|
+
await createDirectoryStructure(projectPath, answer);
|
|
986
|
+
const publicDirPath = path.join(projectPath, "public");
|
|
987
|
+
if (!fs.existsSync(publicDirPath)) {
|
|
988
|
+
fs.mkdirSync(publicDirPath);
|
|
989
|
+
}
|
|
990
|
+
if (answer.swaggerDocs) {
|
|
991
|
+
const swaggerDocsPath = path.join(
|
|
992
|
+
projectPath,
|
|
993
|
+
"src",
|
|
994
|
+
"app",
|
|
995
|
+
"swagger-docs"
|
|
996
|
+
);
|
|
997
|
+
// Check if the directory exists, if not, create it
|
|
998
|
+
if (!fs.existsSync(swaggerDocsPath)) {
|
|
999
|
+
fs.mkdirSync(swaggerDocsPath, { recursive: true }); // 'recursive: true' creates parent directories if they don't exist
|
|
1000
|
+
}
|
|
1001
|
+
// Clone the Git repository into the swagger-docs directory
|
|
1002
|
+
execSync(
|
|
1003
|
+
`git clone https://github.com/TheSteelNinjaCode/prisma-php-swagger-docs.git ${swaggerDocsPath}`,
|
|
1004
|
+
{ stdio: "inherit" }
|
|
1005
|
+
);
|
|
1006
|
+
}
|
|
1007
|
+
if (
|
|
1008
|
+
updateAnswer === null || updateAnswer === void 0
|
|
1009
|
+
? void 0
|
|
1010
|
+
: updateAnswer.isUpdate
|
|
1011
|
+
) {
|
|
1012
|
+
const updateUninstallDependencies = [];
|
|
1013
|
+
if (updateAnswer.backendOnly) {
|
|
1014
|
+
nonBackendFiles.forEach((file) => {
|
|
1015
|
+
const filePath = path.join(projectPath, "src", "app", file);
|
|
1016
|
+
if (fs.existsSync(filePath)) {
|
|
1017
|
+
fs.unlinkSync(filePath); // Delete each file if it exists
|
|
1018
|
+
console.log(`${file} was deleted successfully.`);
|
|
1019
|
+
} else {
|
|
1020
|
+
console.log(`${file} does not exist.`);
|
|
1021
|
+
}
|
|
1022
|
+
});
|
|
1023
|
+
const backendOnlyFolders = ["js", "css"];
|
|
1024
|
+
backendOnlyFolders.forEach((folder) => {
|
|
1025
|
+
const folderPath = path.join(projectPath, "src", "app", folder);
|
|
1026
|
+
if (fs.existsSync(folderPath)) {
|
|
1027
|
+
fs.rmSync(folderPath, { recursive: true, force: true }); // Use fs.rmSync instead of fs.rmdirSync
|
|
1028
|
+
console.log(`${folder} was deleted successfully.`);
|
|
1029
|
+
} else {
|
|
1030
|
+
console.log(`${folder} does not exist.`);
|
|
1031
|
+
}
|
|
1032
|
+
});
|
|
1033
|
+
}
|
|
1034
|
+
if (!updateAnswer.swaggerDocs) {
|
|
1035
|
+
const swaggerDocsFolder = path.join(
|
|
1036
|
+
projectPath,
|
|
1037
|
+
"src",
|
|
1038
|
+
"app",
|
|
1039
|
+
"swagger-docs"
|
|
1040
|
+
);
|
|
1041
|
+
if (fs.existsSync(swaggerDocsFolder)) {
|
|
1042
|
+
fs.rmSync(swaggerDocsFolder, { recursive: true, force: true }); // Use fs.rmSync instead of fs.rmdirSync
|
|
1043
|
+
console.log(`swagger-docs was deleted successfully.`);
|
|
785
1044
|
}
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
|
|
1045
|
+
const swaggerFiles = ["swagger-setup.js"];
|
|
1046
|
+
swaggerFiles.forEach((file) => {
|
|
1047
|
+
const filePath = path.join(projectPath, "settings", file);
|
|
1048
|
+
if (fs.existsSync(filePath)) {
|
|
1049
|
+
fs.unlinkSync(filePath); // Delete each file if it exists
|
|
1050
|
+
console.log(`${file} was deleted successfully.`);
|
|
1051
|
+
} else {
|
|
1052
|
+
console.log(`${file} does not exist.`);
|
|
1053
|
+
}
|
|
1054
|
+
});
|
|
1055
|
+
updateUninstallDependencies.push("swagger-jsdoc");
|
|
1056
|
+
}
|
|
1057
|
+
if (!updateAnswer.tailwindcss) {
|
|
1058
|
+
const tailwindFiles = ["postcss.config.js", "tailwind.config.js"];
|
|
1059
|
+
tailwindFiles.forEach((file) => {
|
|
1060
|
+
const filePath = path.join(projectPath, file);
|
|
1061
|
+
if (fs.existsSync(filePath)) {
|
|
1062
|
+
fs.unlinkSync(filePath); // Delete each file if it exists
|
|
1063
|
+
console.log(`${file} was deleted successfully.`);
|
|
1064
|
+
} else {
|
|
1065
|
+
console.log(`${file} does not exist.`);
|
|
1066
|
+
}
|
|
1067
|
+
});
|
|
1068
|
+
updateUninstallDependencies.push(
|
|
1069
|
+
"tailwindcss",
|
|
1070
|
+
"autoprefixer",
|
|
1071
|
+
"postcss",
|
|
1072
|
+
"postcss-cli",
|
|
1073
|
+
"cssnano"
|
|
1074
|
+
);
|
|
1075
|
+
}
|
|
1076
|
+
if (!updateAnswer.websocket) {
|
|
1077
|
+
updateUninstallDependencies.push("chokidar-cli");
|
|
1078
|
+
}
|
|
1079
|
+
if (!updateAnswer.prisma) {
|
|
1080
|
+
updateUninstallDependencies.push("prisma", "@prisma/client");
|
|
1081
|
+
}
|
|
1082
|
+
if (!updateAnswer.docker) {
|
|
1083
|
+
const dockerFiles = [
|
|
1084
|
+
".dockerignore",
|
|
1085
|
+
"docker-compose.yml",
|
|
1086
|
+
"Dockerfile",
|
|
1087
|
+
"apache.conf",
|
|
802
1088
|
];
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
|
|
806
|
-
|
|
807
|
-
|
|
808
|
-
|
|
809
|
-
|
|
810
|
-
|
|
811
|
-
}
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
|
|
839
|
-
|
|
840
|
-
|
|
841
|
-
|
|
842
|
-
|
|
843
|
-
|
|
844
|
-
|
|
845
|
-
|
|
846
|
-
|
|
847
|
-
|
|
848
|
-
|
|
849
|
-
|
|
850
|
-
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
|
|
858
|
-
|
|
859
|
-
|
|
860
|
-
|
|
861
|
-
}
|
|
862
|
-
});
|
|
863
|
-
}
|
|
864
|
-
if (!updateAnswer.swaggerDocs) {
|
|
865
|
-
const swaggerDocsFolder = path.join(projectPath, "src", "app", "swagger-docs");
|
|
866
|
-
if (fs.existsSync(swaggerDocsFolder)) {
|
|
867
|
-
fs.rmSync(swaggerDocsFolder, { recursive: true, force: true }); // Use fs.rmSync instead of fs.rmdirSync
|
|
868
|
-
console.log(`swagger-docs was deleted successfully.`);
|
|
869
|
-
}
|
|
870
|
-
const swaggerFiles = ["swagger-setup.js"];
|
|
871
|
-
swaggerFiles.forEach((file) => {
|
|
872
|
-
const filePath = path.join(projectPath, "settings", file);
|
|
873
|
-
if (fs.existsSync(filePath)) {
|
|
874
|
-
fs.unlinkSync(filePath); // Delete each file if it exists
|
|
875
|
-
console.log(`${file} was deleted successfully.`);
|
|
876
|
-
}
|
|
877
|
-
else {
|
|
878
|
-
console.log(`${file} does not exist.`);
|
|
879
|
-
}
|
|
880
|
-
});
|
|
881
|
-
updateUninstallDependencies.push("swagger-jsdoc");
|
|
882
|
-
}
|
|
883
|
-
if (!updateAnswer.tailwindcss) {
|
|
884
|
-
const tailwindFiles = ["postcss.config.js", "tailwind.config.js"];
|
|
885
|
-
tailwindFiles.forEach((file) => {
|
|
886
|
-
const filePath = path.join(projectPath, file);
|
|
887
|
-
if (fs.existsSync(filePath)) {
|
|
888
|
-
fs.unlinkSync(filePath); // Delete each file if it exists
|
|
889
|
-
console.log(`${file} was deleted successfully.`);
|
|
890
|
-
}
|
|
891
|
-
else {
|
|
892
|
-
console.log(`${file} does not exist.`);
|
|
893
|
-
}
|
|
894
|
-
});
|
|
895
|
-
updateUninstallDependencies.push("tailwindcss", "autoprefixer", "postcss", "postcss-cli", "cssnano");
|
|
896
|
-
}
|
|
897
|
-
if (!updateAnswer.websocket) {
|
|
898
|
-
updateUninstallDependencies.push("chokidar-cli");
|
|
899
|
-
}
|
|
900
|
-
if (!updateAnswer.prisma) {
|
|
901
|
-
updateUninstallDependencies.push("prisma", "@prisma/client");
|
|
902
|
-
}
|
|
903
|
-
if (!updateAnswer.docker) {
|
|
904
|
-
const dockerFiles = [
|
|
905
|
-
".dockerignore",
|
|
906
|
-
"docker-compose.yml",
|
|
907
|
-
"Dockerfile",
|
|
908
|
-
"apache.conf",
|
|
909
|
-
];
|
|
910
|
-
dockerFiles.forEach((file) => {
|
|
911
|
-
const filePath = path.join(projectPath, file);
|
|
912
|
-
if (fs.existsSync(filePath)) {
|
|
913
|
-
fs.unlinkSync(filePath); // Delete each file if it exists
|
|
914
|
-
console.log(`${file} was deleted successfully.`);
|
|
915
|
-
}
|
|
916
|
-
else {
|
|
917
|
-
console.log(`${file} does not exist.`);
|
|
918
|
-
}
|
|
919
|
-
});
|
|
920
|
-
}
|
|
921
|
-
if (updateUninstallDependencies.length > 0) {
|
|
922
|
-
await uninstallDependencies(projectPath, updateUninstallDependencies, true);
|
|
923
|
-
}
|
|
924
|
-
}
|
|
925
|
-
const projectPathModified = projectPath.replace(/\\/g, "\\");
|
|
926
|
-
const bsConfig = bsConfigUrls(projectPathModified);
|
|
927
|
-
const phpGenerateClassPath = answer.prisma ? "src/Lib/Prisma/Classes" : "";
|
|
928
|
-
const prismaPhpConfig = {
|
|
929
|
-
projectName: answer.projectName,
|
|
930
|
-
projectRootPath: projectPathModified,
|
|
931
|
-
phpEnvironment: "XAMPP",
|
|
932
|
-
phpRootPathExe: "C:\\xampp\\php\\php.exe",
|
|
933
|
-
phpGenerateClassPath,
|
|
934
|
-
bsTarget: bsConfig.bsTarget,
|
|
935
|
-
bsPathRewrite: bsConfig.bsPathRewrite,
|
|
936
|
-
backendOnly: answer.backendOnly,
|
|
937
|
-
swaggerDocs: answer.swaggerDocs,
|
|
938
|
-
tailwindcss: answer.tailwindcss,
|
|
939
|
-
websocket: answer.websocket,
|
|
940
|
-
prisma: answer.prisma,
|
|
941
|
-
docker: answer.docker,
|
|
942
|
-
version: latestVersionOfCreatePrismaPhpApp,
|
|
943
|
-
excludeFiles: (_j = updateAnswer === null || updateAnswer === void 0 ? void 0 : updateAnswer.excludeFiles) !== null && _j !== void 0 ? _j : [],
|
|
944
|
-
};
|
|
945
|
-
fs.writeFileSync(path.join(projectPath, "prisma-php.json"), JSON.stringify(prismaPhpConfig, null, 2), { flag: "w" });
|
|
946
|
-
if (updateAnswer === null || updateAnswer === void 0 ? void 0 : updateAnswer.isUpdate) {
|
|
947
|
-
execSync(`C:\\xampp\\php\\php.exe C:\\ProgramData\\ComposerSetup\\bin\\composer.phar update`, {
|
|
948
|
-
stdio: "inherit",
|
|
949
|
-
});
|
|
1089
|
+
dockerFiles.forEach((file) => {
|
|
1090
|
+
const filePath = path.join(projectPath, file);
|
|
1091
|
+
if (fs.existsSync(filePath)) {
|
|
1092
|
+
fs.unlinkSync(filePath); // Delete each file if it exists
|
|
1093
|
+
console.log(`${file} was deleted successfully.`);
|
|
1094
|
+
} else {
|
|
1095
|
+
console.log(`${file} does not exist.`);
|
|
1096
|
+
}
|
|
1097
|
+
});
|
|
1098
|
+
}
|
|
1099
|
+
if (updateUninstallDependencies.length > 0) {
|
|
1100
|
+
await uninstallDependencies(
|
|
1101
|
+
projectPath,
|
|
1102
|
+
updateUninstallDependencies,
|
|
1103
|
+
true
|
|
1104
|
+
);
|
|
1105
|
+
}
|
|
1106
|
+
}
|
|
1107
|
+
const projectPathModified = projectPath.replace(/\\/g, "\\");
|
|
1108
|
+
const bsConfig = bsConfigUrls(projectPathModified);
|
|
1109
|
+
const phpGenerateClassPath = answer.prisma ? "src/Lib/Prisma/Classes" : "";
|
|
1110
|
+
const prismaPhpConfig = {
|
|
1111
|
+
projectName: answer.projectName,
|
|
1112
|
+
projectRootPath: projectPathModified,
|
|
1113
|
+
phpEnvironment: "XAMPP",
|
|
1114
|
+
phpRootPathExe: "C:\\xampp\\php\\php.exe",
|
|
1115
|
+
phpGenerateClassPath,
|
|
1116
|
+
bsTarget: bsConfig.bsTarget,
|
|
1117
|
+
bsPathRewrite: bsConfig.bsPathRewrite,
|
|
1118
|
+
backendOnly: answer.backendOnly,
|
|
1119
|
+
swaggerDocs: answer.swaggerDocs,
|
|
1120
|
+
tailwindcss: answer.tailwindcss,
|
|
1121
|
+
websocket: answer.websocket,
|
|
1122
|
+
prisma: answer.prisma,
|
|
1123
|
+
docker: answer.docker,
|
|
1124
|
+
version: latestVersionOfCreatePrismaPhpApp,
|
|
1125
|
+
excludeFiles:
|
|
1126
|
+
(_j =
|
|
1127
|
+
updateAnswer === null || updateAnswer === void 0
|
|
1128
|
+
? void 0
|
|
1129
|
+
: updateAnswer.excludeFiles) !== null && _j !== void 0
|
|
1130
|
+
? _j
|
|
1131
|
+
: [],
|
|
1132
|
+
};
|
|
1133
|
+
fs.writeFileSync(
|
|
1134
|
+
path.join(projectPath, "prisma-php.json"),
|
|
1135
|
+
JSON.stringify(prismaPhpConfig, null, 2),
|
|
1136
|
+
{ flag: "w" }
|
|
1137
|
+
);
|
|
1138
|
+
if (
|
|
1139
|
+
updateAnswer === null || updateAnswer === void 0
|
|
1140
|
+
? void 0
|
|
1141
|
+
: updateAnswer.isUpdate
|
|
1142
|
+
) {
|
|
1143
|
+
execSync(
|
|
1144
|
+
`C:\\xampp\\php\\php.exe C:\\ProgramData\\ComposerSetup\\bin\\composer.phar update`,
|
|
1145
|
+
{
|
|
1146
|
+
stdio: "inherit",
|
|
950
1147
|
}
|
|
951
|
-
|
|
952
|
-
|
|
953
|
-
|
|
954
|
-
|
|
1148
|
+
);
|
|
1149
|
+
} else {
|
|
1150
|
+
execSync(
|
|
1151
|
+
`C:\\xampp\\php\\php.exe C:\\ProgramData\\ComposerSetup\\bin\\composer.phar install`,
|
|
1152
|
+
{
|
|
1153
|
+
stdio: "inherit",
|
|
955
1154
|
}
|
|
956
|
-
|
|
957
|
-
}
|
|
958
|
-
catch (error) {
|
|
959
|
-
console.error("Error while creating the project:", error);
|
|
960
|
-
process.exit(1);
|
|
1155
|
+
);
|
|
961
1156
|
}
|
|
1157
|
+
console.log(
|
|
1158
|
+
`${chalk.green("Success!")} Prisma PHP project successfully created in ${
|
|
1159
|
+
answer.projectName
|
|
1160
|
+
}!`
|
|
1161
|
+
);
|
|
1162
|
+
} catch (error) {
|
|
1163
|
+
console.error("Error while creating the project:", error);
|
|
1164
|
+
process.exit(1);
|
|
1165
|
+
}
|
|
962
1166
|
}
|
|
963
1167
|
main();
|