genbox 1.0.73 → 1.0.74
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/commands/init.js +10 -18
- package/package.json +1 -1
package/dist/commands/init.js
CHANGED
|
@@ -690,13 +690,15 @@ async function setupEnvironmentsAndServiceUrls(detected, existingEnvValues) {
|
|
|
690
690
|
console.log('');
|
|
691
691
|
console.log(chalk_1.default.blue('=== Environment Configuration ==='));
|
|
692
692
|
console.log('');
|
|
693
|
-
// Auto-detect database URLs from project
|
|
693
|
+
// Auto-detect database URLs from project (informational only)
|
|
694
|
+
// Note: These are typically LOCAL dev databases, not production sources for snapshots
|
|
694
695
|
const detectedDbUrls = detectDatabaseUrls(detected._meta.scanned_root, detected);
|
|
695
696
|
if (detectedDbUrls.length > 0) {
|
|
696
|
-
console.log(chalk_1.default.dim('Detected database URLs in project:'));
|
|
697
|
+
console.log(chalk_1.default.dim('Detected database URLs in project (for reference):'));
|
|
697
698
|
for (const db of detectedDbUrls) {
|
|
699
|
+
const info = db.varName ? `${db.varName} in ${db.source}` : db.source;
|
|
698
700
|
console.log(chalk_1.default.dim(` • ${db.url}`));
|
|
699
|
-
console.log(chalk_1.default.dim(` └─ from ${
|
|
701
|
+
console.log(chalk_1.default.dim(` └─ from ${info}${db.database ? ` (database: ${db.database})` : ''}`));
|
|
700
702
|
}
|
|
701
703
|
console.log('');
|
|
702
704
|
}
|
|
@@ -714,11 +716,9 @@ async function setupEnvironmentsAndServiceUrls(detected, existingEnvValues) {
|
|
|
714
716
|
if (envChoice !== 'skip') {
|
|
715
717
|
console.log('');
|
|
716
718
|
console.log(chalk_1.default.dim('These URLs will be used when connecting to external services.'));
|
|
717
|
-
console.log(chalk_1.default.dim('MongoDB URLs
|
|
719
|
+
console.log(chalk_1.default.dim('MongoDB URLs should point to PRODUCTION/STAGING databases (source for snapshots).'));
|
|
718
720
|
const configureStaging = envChoice === 'staging' || envChoice === 'both';
|
|
719
721
|
const configureProduction = envChoice === 'production' || envChoice === 'both';
|
|
720
|
-
// Build suggested MongoDB URL from detected sources
|
|
721
|
-
const suggestedMongoUrl = buildMongoDbUrl(detectedDbUrls);
|
|
722
722
|
if (configureStaging) {
|
|
723
723
|
console.log('');
|
|
724
724
|
console.log(chalk_1.default.cyan('Staging Environment:'));
|
|
@@ -730,13 +730,9 @@ async function setupEnvironmentsAndServiceUrls(detected, existingEnvValues) {
|
|
|
730
730
|
};
|
|
731
731
|
envVars['STAGING_API_URL'] = stagingApiUrl;
|
|
732
732
|
}
|
|
733
|
-
//
|
|
733
|
+
// Keep existing value - don't auto-suggest local dev URLs for snapshot sources
|
|
734
734
|
const existingStagingMongo = existingEnvValues['STAGING_MONGODB_URL'];
|
|
735
|
-
const
|
|
736
|
-
if (stagingMongoDefault && !existingStagingMongo) {
|
|
737
|
-
console.log(chalk_1.default.dim(` Auto-detected: ${stagingMongoDefault}`));
|
|
738
|
-
}
|
|
739
|
-
const stagingMongoUrl = await promptWithExisting(' Staging MongoDB URL (for snapshots):', stagingMongoDefault, true);
|
|
735
|
+
const stagingMongoUrl = await promptWithExisting(' Staging MongoDB URL (for snapshots):', existingStagingMongo, true);
|
|
740
736
|
if (stagingMongoUrl) {
|
|
741
737
|
envVars['STAGING_MONGODB_URL'] = stagingMongoUrl;
|
|
742
738
|
}
|
|
@@ -756,13 +752,9 @@ async function setupEnvironmentsAndServiceUrls(detected, existingEnvValues) {
|
|
|
756
752
|
};
|
|
757
753
|
envVars['PRODUCTION_API_URL'] = prodApiUrl;
|
|
758
754
|
}
|
|
759
|
-
//
|
|
755
|
+
// Keep existing value - don't auto-suggest local dev URLs for snapshot sources
|
|
760
756
|
const existingProdMongo = existingEnvValues['PROD_MONGODB_URL'] || existingEnvValues['PRODUCTION_MONGODB_URL'];
|
|
761
|
-
const
|
|
762
|
-
if (prodMongoDefault && !existingProdMongo) {
|
|
763
|
-
console.log(chalk_1.default.dim(` Auto-detected: ${prodMongoDefault}`));
|
|
764
|
-
}
|
|
765
|
-
const prodMongoUrl = await promptWithExisting(' Production MongoDB URL (for snapshots):', prodMongoDefault, true);
|
|
757
|
+
const prodMongoUrl = await promptWithExisting(' Production MongoDB URL (for snapshots):', existingProdMongo, true);
|
|
766
758
|
if (prodMongoUrl) {
|
|
767
759
|
envVars['PROD_MONGODB_URL'] = prodMongoUrl;
|
|
768
760
|
}
|