gagandeep / jsonnet

Jsonnet - The data templating language

Home Page:http://jsonnet.org

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Jsonnet - The data templating language

Build Status

For an introduction to Jsonnet and documentation, visit our website.

Visit our discussion forum.

Quick Start

Using Homebrew

brew install jsonnet

Building Jsonnet

You can use either GCC or Clang to build Jsonnet. Note that on recent versions of macOS, /usr/bin/gcc and /usr/bin/g++ are actually Clang, so there is no difference.

Makefile

To build Jsonnet with GCC, run:

make

To build Jsonnet with Clang, run:

make CC=clang CXX=clang++

To run the output binary, run:

./jsonnet

To run the reformatter, run:

./jsonnetfmt

Bazel

Bazel builds are also supported. Install Bazel if it is not installed already. Then, run the following command to build with GCC:

bazel build -c opt //cmd:all

To build with Clang, use one of these two options:

env CC=clang CXX=clang++ bazel build -c opt //cmd:all

# OR

bazel build -c opt --action_env=CC=clang --action_env=CXX=clang++ //cmd:all

This builds the jsonnet and jsonnetfmt targets defined in cmd/BUILD. To launch the output binaries, run:

bazel-bin/cmd/jsonnet
bazel-bin/cmd/jsonnetfmt

Cmake

cmake . -Bbuild
cmake --build build --target run_tests

Contributing

See the contributing page on our website.

Developing Jsonnet

Running tests

To run the comprehensive suite:

make test

Locally serving the website

First, you need to build the JavaScript version of Jsonnet (which requires emscripten):

make doc/js/libjsonnet.js

Then, from the root of the repository you can generate and serve the website using Jekyll:

tools/scripts/serve_docs.sh

This should the website on localhost:8080, automatically rebuild when you change any underlying files, and automatically refresh your browser when that happens.

About

Jsonnet - The data templating language

http://jsonnet.org

License:Apache License 2.0


Languages

Language:Jsonnet 58.1%Language:C++ 30.3%Language:Python 4.7%Language:C 2.2%Language:Shell 1.9%Language:HTML 0.9%Language:CMake 0.7%Language:Java 0.5%Language:Makefile 0.4%Language:CSS 0.3%Language:Dockerfile 0.0%