For an introduction to Jsonnet and documentation, visit our website.
Visit our discussion forum.
The GCC C++ (g++) compiler is required to build Jsonnet. Clang is also supported.
To build jsonnet with g++, run:
make
To run the output binary, run:
./jsonnet
Bazel builds are also supported. Install Bazel if it is not installed already. Then, run the following command to build:
bazel build -c opt //cmd:jsonnet
This builds the jsonnet
target defined in cmd/BUILD To run the
output binary, run:
bazel-bin/cmd/jsonnet
See the contributing page on our website.