This project includes some custom Composer scripts that you can use rather than running `vendor/bin/sculpin` directly, and that include some additional default options.
These are:
-`composer run generate` and `composer run dev` - These generate the site in the development mode.
-`composer run watch` - Generates and serves the site in development mode, watching for any changes.
-`composer run prod` - Generates the site in production mode.
You can still pass additional options by separating the command and options with `--`. For example, running `composer run watch -- --port=8002` would run the default watch command but also update the server port:
```
composer run watch -- --port=8002
> composer run generate -- --server --watch '--port=8002'