Setting up your developer environment
Step 1: Install Docker and Kubernetes
Step 2: Clone the repo
Step 3: Install dependencies
macOS
For Mac we have a script that installs all required dependencies.
Windows / Linux
Other platforms need to roll their own for now (contributions welcome!). Please have a look at the script for OSX to see what's installed.
asdf
Step 4: Bootstrap project
Install Node modules for the root package, and core
package:
Developing Garden
Initial build
Before running Garden for the first time, you need to do an initial build by running
from the root directory.
Developing
To develop the CLI, run the dev
command in your console:
This will link it to your global node_modules
folder, and then watch for changes and auto-rebuild as you code. You can then run the garden
command as normal.
Also, you might like to add a couple of shorthands:
Last updated