@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.
Files changed (2) hide show
  1. package/dist/index.js +7 -6
  2. 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 Not Shared Between Environments '));
233
- console.log(chalk.yellow('\n Each environment (staging, production) has its OWN database.'));
234
- console.log(chalk.yellow(' Deploying to staging does NOT copy production data.\n'));
235
- console.log(' To copy data between environments:');
236
- console.log(' • Use pg_dump/pg_restore for PostgreSQL');
237
- console.log(' • Or set up a shared external database service\n');
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');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@panoptic-it-solutions/coolify-setup",
3
- "version": "1.1.44",
3
+ "version": "1.1.45",
4
4
  "description": "CLI tool for setting up Coolify deployment on Panoptic projects",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",