@stacksjs/buddy 0.70.65 → 0.70.67
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/deploy.js +3 -0
- package/package.json +1 -1
package/dist/commands/deploy.js
CHANGED
|
@@ -687,6 +687,9 @@ async function runHetznerDeploy(args) {
|
|
|
687
687
|
}
|
|
688
688
|
ip = box.publicIp;
|
|
689
689
|
log.info(`Attaching to '${attachTo}' box '${box.serverName}' (${ip}) \u2014 skipping provisioning`);
|
|
690
|
+
const compute = (tsCloudConfig.infrastructure ??= {}).compute ??= {};
|
|
691
|
+
compute.webServer = "rpx";
|
|
692
|
+
compute.proxy = { ...compute.proxy ?? {}, engine: "rpx" };
|
|
690
693
|
const stackName = tsCloudConfig.project?.stackName || `${tsCloudConfig.project?.slug || "app"}-${environment}`, stateDir = join(process.cwd(), ".ts-cloud", "state");
|
|
691
694
|
mkdirSync(stateDir, { recursive: !0 });
|
|
692
695
|
writeFileSync(join(stateDir, `${stackName}.json`), `${JSON.stringify({
|