This commit is contained in:
Emily
2024-06-25 15:27:40 +02:00
parent f369880ba7
commit 62f555f86f
7 changed files with 35 additions and 10 deletions

View File

@@ -0,0 +1,7 @@
const child = require('child_process');
const p = child.exec('pnpm run compile && pnpm run build && pnpm run create_db');
p.stdout.on('data', (e) => { console.log(e.toString()); });
p.stderr.on('data', (e) => { console.log(e.toString()); });