Mac | installed Pixlet | Terminal doesn't execute actions

I installed Pixlet and have followed the instructions very well but I end up with this error on call:

error loading applet: failed to read file hello_world.star: open hello_world.star: no such file or directory

What am I missing?

.star file:

load("render.star", "render")

def main():
    return render.Root(
        child = render.Text("Hello, World!")
    )

Action:

pixlet serve hello_world.star

Are you running the command in the same folder where the .star file resides?

For instance, if the file is at /Users/youruser/tidbyt/hello_world.star then you need to first cd into that folder:

cd /Users/youruser/tidbyt
pixlet render hello_world.star