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 = `REACT_APP_FLEETBO_DB_KEY=${keys.fleetboDBKey}
145
- REACT_APP_ENTERPRISE_ID=${keys.enterpriseId}
146
- REACT_KEY_APP=${projectName}
147
- REACT_APP_TESTER_EMAIL=${userEmailArg}
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
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-fleetbo-project",
3
- "version": "1.2.87",
3
+ "version": "1.2.88",
4
4
  "description": "Creates a new Fleetbo project.",
5
5
  "main": "install-react-template.js",
6
6
  "bin": {