create-fleetbo-project 1.2.45 → 1.2.46
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.
|
@@ -178,7 +178,7 @@ if (command === 'alex') {
|
|
|
178
178
|
while (attempts < maxAttempts && !isReady) {
|
|
179
179
|
try {
|
|
180
180
|
const validation = await axios.post(ALEX_ENGINE_URL, {
|
|
181
|
-
prompt: "ping", validateProject: true, checkNetwork: true
|
|
181
|
+
prompt: "ping", validateProject: true, checkNetwork: true, projectKey: keyApp
|
|
182
182
|
}, { headers: { 'x-project-id': projectId }, timeout: 5000 });
|
|
183
183
|
|
|
184
184
|
if (validation.data?.isRunning) { isReady = true; break; }
|
|
@@ -192,6 +192,7 @@ if (command === 'alex') {
|
|
|
192
192
|
|
|
193
193
|
if (!isReady) {
|
|
194
194
|
console.error('\\n\\x1b[31m⚠️ ENGINE OFFLINE:\\x1b[0m Start Fleetbo runtime first: "npm run fleetbo" ');
|
|
195
|
+
console.error(\`\\x1b[90m(Ensure you are running the runtime for project: \${keyApp})\\x1b[0m\`);
|
|
195
196
|
process.exit(1);
|
|
196
197
|
}
|
|
197
198
|
|