hippofish/scripts/dev-up.mjs

13 lines
308 B
JavaScript
Raw Normal View History

import path, { join } from "node:path";
import { fileURLToPath } from "node:url";
import { execa } from "execa";
(async () => {
const __dirname = path.dirname(fileURLToPath(import.meta.url));
execa("podman-compose", ["up", "--detach"], {
cwd: join(__dirname, "/../dev"),
stdio: "inherit",
});
})();