Beta
The OptiTech Functions is in Beta. Share your feedback on Discord or via the OptiTech Console.
The dev command runs OptiTech Functions locally with a dev server and hot reload. Serve one function from its entry module, or every function declared in your optitech.ts policy.
Usage
optitech dev [--source <path>] [options]Options
Examples
Serve one function on a free port with hot reload:
optitech dev --source ./functions/hello.tsServe every function declared in optitech.ts (one dev server each):
optitech devServe one function on an explicit port (fails if the port is taken):
optitech dev --source ./functions/hello.ts --port 3000