@panoptic-it-solutions/coolify-setup 1.1.43 → 1.1.44

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 +6 -0
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -229,6 +229,12 @@ 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
238
  }
233
239
  console.log(chalk.bold('Branching Strategy:\n'));
234
240
  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.43",
3
+ "version": "1.1.44",
4
4
  "description": "CLI tool for setting up Coolify deployment on Panoptic projects",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",