Skip to main content

Create Project

caution

TODO: Video

What we're building

This tutorial will walk through, end-to-end, the process of building a Service that supports submitting tasks, waiting for a person to approve the task, and then completing the task. It will demonstrate how to build APIs, a human-in-the-loop workflow and emit events.

Set Up

First, create a new project.

npm create eventual@latest

Then, delete the sample code that comes with the template packages/service/src/hello.ts and packages/service/test/hello.test.ts

Finally, in a new terminal, run watch to continuously build your project as you make changes.

npm watch