@panoptic-it-solutions/coolify-setup 1.1.44 → 1.1.45
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/index.js +7 -6
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -229,12 +229,13 @@ async function main() {
|
|
|
229
229
|
console.log(chalk.green(' ✅ MINIO_ENDPOINT=http://minio:9000\n'));
|
|
230
230
|
}
|
|
231
231
|
console.log(chalk.yellow(' Docker containers use service names for internal DNS resolution.\n'));
|
|
232
|
-
console.log(chalk.bgRed.white.bold(' ⚠️ IMPORTANT: Database
|
|
233
|
-
console.log(chalk.yellow('\n
|
|
234
|
-
console.log(chalk.yellow('
|
|
235
|
-
console.log(' To
|
|
236
|
-
console.log(' •
|
|
237
|
-
console.log(' •
|
|
232
|
+
console.log(chalk.bgRed.white.bold(' ⚠️ IMPORTANT: Database Is NOT Copied When Deploying '));
|
|
233
|
+
console.log(chalk.yellow('\n When you deploy to a new server (e.g., staging server), the database'));
|
|
234
|
+
console.log(chalk.yellow(' starts EMPTY. Your existing data will NOT be copied automatically.\n'));
|
|
235
|
+
console.log(' To migrate data to the new server:');
|
|
236
|
+
console.log(' • Export: pg_dump -h old-host -U user dbname > backup.sql');
|
|
237
|
+
console.log(' • Import: psql -h new-host -U user dbname < backup.sql');
|
|
238
|
+
console.log(' • Or use Coolify\'s database backup/restore features\n');
|
|
238
239
|
}
|
|
239
240
|
console.log(chalk.bold('Branching Strategy:\n'));
|
|
240
241
|
console.log(' develop → Default branch, main development');
|