create-fleetbo-project 1.2.87 → 1.2.88
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.
|
@@ -141,12 +141,10 @@ async function setupProject() {
|
|
|
141
141
|
if (!keys.enterpriseId) throw new Error("Invalid keys.");
|
|
142
142
|
|
|
143
143
|
console.log(' [5/8] Configuring environment...');
|
|
144
|
-
const envContent = `
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
DANGEROUSLY_DISABLE_HOST_CHECK=true
|
|
149
|
-
WDS_SOCKET_PORT=0`;
|
|
144
|
+
const envContent = `FLEETBO_APP_DB_KEY=${keys.fleetboDBKey}
|
|
145
|
+
FLEETBO_APP_ENTERPRISE_ID=${keys.enterpriseId}
|
|
146
|
+
FLEETBO_KEY_APP=${projectName}
|
|
147
|
+
FLEETBO_APP_TESTER_EMAIL=${userEmailArg}`;
|
|
150
148
|
|
|
151
149
|
fs.writeFileSync(path.join(projectDir, '.env'), envContent, 'utf8');
|
|
152
150
|
|