@webhikers/cli 1.1.11 → 1.1.13
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 +1 -1
- package/src/commands/create.js +4 -3
package/package.json
CHANGED
package/src/commands/create.js
CHANGED
|
@@ -162,10 +162,11 @@ export async function createCommand(name) {
|
|
|
162
162
|
});
|
|
163
163
|
const appUuid = app.uuid;
|
|
164
164
|
|
|
165
|
-
console.log(c.dim(` Setting domain
|
|
165
|
+
console.log(c.dim(` Setting domain...`));
|
|
166
166
|
await coolifyApi(config, "PATCH", `/applications/${appUuid}`, {
|
|
167
|
-
|
|
168
|
-
|
|
167
|
+
docker_compose_domains: JSON.stringify([
|
|
168
|
+
{ name: "app", domain: `https://${domain}` },
|
|
169
|
+
]),
|
|
169
170
|
});
|
|
170
171
|
|
|
171
172
|
console.log(c.dim(" Setting environment variables..."));
|