feat: proje secimi ve otomatik ekip akisini ekle

This commit is contained in:
2026-03-17 00:40:50 +03:00
parent 3641190a77
commit c312b83604
6 changed files with 130 additions and 5 deletions

10
server/projectPicker.js Normal file
View File

@@ -0,0 +1,10 @@
import { execFile } from "node:child_process";
import { promisify } from "node:util";
const execFileAsync = promisify(execFile);
export async function selectProjectFolder() {
const script = 'POSIX path of (choose folder with prompt "Select project folder")';
const { stdout } = await execFileAsync("/usr/bin/osascript", ["-e", script]);
return String(stdout ?? "").trim();
}