fleetbo-cockpit-cli 1.0.80 → 1.0.82
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/cli.js +5 -5
- package/package.json +1 -1
package/cli.js
CHANGED
|
@@ -39,9 +39,9 @@ if (!fs.existsSync(envPath)) {
|
|
|
39
39
|
dotenv.config({ path: envPath, quiet: true });
|
|
40
40
|
|
|
41
41
|
// CORRECT — correspond à ton .env actuel
|
|
42
|
-
const projectId = process.env.
|
|
43
|
-
const keyApp = process.env.
|
|
44
|
-
const testerEmail = process.env.
|
|
42
|
+
const projectId = process.env.VITE_FLEETBO_ENTERPRISE_ID;
|
|
43
|
+
const keyApp = process.env.VITE_FLEETBO_KEY_APP;
|
|
44
|
+
const testerEmail = process.env.VITE_FLEETBO_TESTER_EMAIL;
|
|
45
45
|
|
|
46
46
|
|
|
47
47
|
if (!projectId) {
|
|
@@ -873,7 +873,7 @@ else {
|
|
|
873
873
|
console.log('\x1b[32mFleetbo OS ❯\x1b[0m \x1b[1mGO GO GO ! OS IS READY\x1b[0m');
|
|
874
874
|
console.log('\x1b[32mFleetbo OS ❯\x1b[0m You can now start coding and previewing. 🚀');
|
|
875
875
|
console.log(`\x1b[32mFleetbo OS ❯\x1b[0m -------------------------------------------------------------`);
|
|
876
|
-
console.log(`\x1b[34mPilot Instruction ❯\x1b[0m Return to the Workspace. The Engine is ready for your orders.\n`);
|
|
876
|
+
console.log(`\n\x1b[34mPilot Instruction ❯\x1b[0m Return to the Workspace. The Engine is ready for your orders.\n`);
|
|
877
877
|
} catch (err) {
|
|
878
878
|
console.error(`\x1b[31mFleetbo OS ❯\x1b[0m Sync Error: ${err.message}`);
|
|
879
879
|
}
|
|
@@ -943,7 +943,7 @@ else {
|
|
|
943
943
|
if (!connectionStarted && (output.includes('localhost') || output.includes('ready in'))){
|
|
944
944
|
connectionStarted = true;
|
|
945
945
|
|
|
946
|
-
console.log('\x1b[33mFleetbo OS ❯\x1b[0m ---------------------------------------------------');
|
|
946
|
+
console.log('\n\x1b[33mFleetbo OS ❯\x1b[0m ---------------------------------------------------');
|
|
947
947
|
console.log(`\x1b[33mFleetbo OS ❯\x1b[0m 🔗 Establishing Secure Uplink...`);
|
|
948
948
|
console.log(`\x1b[33mFleetbo OS ❯\x1b[0m ⏳ Please wait for the green message...`);
|
|
949
949
|
console.log('\x1b[33mFleetbo OS ❯\x1b[0m ---------------------------------------------------');
|