@webhikers/cli 1.1.3 → 1.1.4

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": "@webhikers/cli",
3
- "version": "1.1.3",
3
+ "version": "1.1.4",
4
4
  "description": "CLI for creating and deploying webhikers projects",
5
5
  "type": "module",
6
6
  "bin": {
@@ -167,12 +167,12 @@ export async function createCommand(name) {
167
167
  await coolifyApi(config, "POST", `/applications/${appUuid}/envs`, {
168
168
  key: "PAYLOAD_SECRET",
169
169
  value: payloadSecret,
170
- is_build_time: true,
170
+ is_preview: false,
171
171
  });
172
172
  await coolifyApi(config, "POST", `/applications/${appUuid}/envs`, {
173
173
  key: "SITE_URL",
174
174
  value: siteUrl,
175
- is_build_time: true,
175
+ is_preview: false,
176
176
  });
177
177
 
178
178
  // --- 7. Write .deploy.json ---