@kntic/kntic 0.2.0 → 0.2.1

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": "@kntic/kntic",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "author": "Thomas Robak <contact@kntic.ai> (https://kntic.ai)",
5
5
  "description": "KNTIC CLI — bootstrap and manage KNTIC projects",
6
6
  "main": "src/index.js",
@@ -4,7 +4,7 @@ const { execSync } = require("child_process");
4
4
 
5
5
  function start() {
6
6
  console.log("Starting KNTIC services…");
7
- execSync("docker compose -f kntic.yml --env-file .kntic.env up", { stdio: "inherit" });
7
+ execSync("docker compose -f kntic.yml --env-file .kntic.env up --build", { stdio: "inherit" });
8
8
  }
9
9
 
10
10
  module.exports = start;
@@ -6,7 +6,7 @@ function usage() {
6
6
  console.log("Available commands:\n");
7
7
  console.log(" usage List all available sub-commands");
8
8
  console.log(" init Download and extract the KNTIC bootstrap template into the current directory");
9
- console.log(" start Start KNTIC services via docker compose (uses kntic.yml + .kntic.env)");
9
+ console.log(" start Build and start KNTIC services via docker compose (uses kntic.yml + .kntic.env)");
10
10
  console.log("");
11
11
  }
12
12