Files
triggerdotdev--trigger.dev/packages/cli-v3/DEVELOPMENT.md
T
amuwal 2be1062f1e fix: unintended project initialization at absolute path /trigger during project initialization (#1412)
* Fix parsing of project path for cli init command

* Update development instructions for cli-v3

* Create gentle-mails-sip.md

---------

Co-authored-by: Eric Allam <eallam@icloud.com>
2024-11-15 11:34:51 +00:00

441 B

Running the CLI from source

  1. Run the CLI and watch for changes
cd packages/cli-v3
pnpm run dev
  1. Test the local CLI using the job-catalogs located in the /references directory
pnpm i
pnpm exec trigger <command>

If you want to use it in a new folder, you need to first add it as a dev dependency in package.json:

//...
"devDependencies": {
    "trigger.dev": "workspace:*",
    //...
}
//...