Allows automated installation of a wurstscript environment and project setup.
Grill is the name of the CLI and dependency manager used by the UI internally. Pro users can make use of grill from the shell:
Update or remove the global wurst installation by using the special wurstscript
identifier.
> grill install wurstscript
> grill remove wurstscript
To create a new project, use generate
and supply your name of choice.
> grill generate <project_name>
By not passing any additional arguments grill will assume that the execution location is a wurst project.
To update all project dependencies use:
> grill install
To add a new dependency to your project, use:
> grill install <git_url>
Use test
to compile the project at the current location and run unit tests.
> grill test
Use build
to generate an output map according to wurst.build
specifications.
> grill build
The wurst compiler gets downloaded into the users home directory into a wurst folder ~/.wurst
The setup app downloads this repo https://github.com/wurstscript/wurst-project-template as a wurst project template and then inserts the necessary local parths as well as generating the wurst.dependencies file.
Dependencies are stored in _build/dependencies/
.