mirror of
https://github.com/vercel/workflow.git
synced 2026-09-14 19:59:43 +08:00
13 lines
297 B
JavaScript
Executable File
13 lines
297 B
JavaScript
Executable File
#!/usr/bin/env node
|
|
|
|
// Simple wrapper to run the CLI from the bin directory
|
|
import('../dist/cli.js')
|
|
.then((module) => {
|
|
// Call the setupDatabase function
|
|
return module.setupDatabase();
|
|
})
|
|
.catch((err) => {
|
|
console.error('Failed to load CLI:', err);
|
|
process.exit(1);
|
|
});
|