Quick Guide
How to start with Puff?
After installation, open your project folder (workspace) and create a file named puff.yml
(puff.yaml
and .puff
are also supported).
Open the file in your preferred editor and paste the following code:
tasks:
default:
commands:
- echo 'Hello, world'
Now run puff
in your terminal — and you'll see "Hello world!" appear.
$ puff
Hello, world
Now we recommend checking out how to write tasks.
Last updated