@launchframe/cli 1.0.0-beta.2 → 1.0.0-beta.3

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@launchframe/cli",
3
- "version": "1.0.0-beta.2",
3
+ "version": "1.0.0-beta.3",
4
4
  "description": "Production-ready B2B SaaS boilerplate with subscriptions, credits, and multi-tenancy",
5
5
  "main": "src/index.js",
6
6
  "bin": {
@@ -158,6 +158,22 @@ async function deployInit() {
158
158
  process.exit(1);
159
159
  }
160
160
 
161
+ // Create symlink for docker-compose.override.yml -> docker-compose.prod.yml
162
+ const symlinkSpinner = ora('Creating docker-compose.override.yml symlink...').start();
163
+
164
+ try {
165
+ await executeSSH(
166
+ vpsUser,
167
+ vpsHost,
168
+ `cd ${vpsAppFolder}/infrastructure && ln -sf docker-compose.prod.yml docker-compose.override.yml`
169
+ );
170
+ symlinkSpinner.succeed('Docker Compose override symlink created');
171
+ } catch (error) {
172
+ symlinkSpinner.fail('Failed to create symlink');
173
+ console.log(chalk.red(`\n❌ Error: ${error.message}\n`));
174
+ process.exit(1);
175
+ }
176
+
161
177
  // Check if waitlist is running and stop it (full-app deployment)
162
178
  try {
163
179
  const { stdout: psOutput } = await executeSSH(