phone/scripts/setup-services.ts
2025-11-20 18:18:47 -08:00

15 lines
332 B
TypeScript

#!/usr/bin/env bun
import { setupServices } from "./bootstrap-services"
// Get install directory from argument or use default
const INSTALL_DIR = process.argv[2] || "/home/corey/phone"
console.log(`Setting up services for: ${INSTALL_DIR}`)
await setupServices(INSTALL_DIR)
console.log(`
✓ Services configured and running!
`)