EBazarov / 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.

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

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:jsonnet

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

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

# OR

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

This builds the jsonnet target defined in cmd/BUILD. To launch the output binary, run:

bazel-bin/cmd/jsonnet

Cmake

TODO: info about cmake

Contributing

See the contributing page on our website.

Developing Jsonnet

Running tests

TODO

Locally serving the website

TODO

About

Jsonnet - The data templating language

http://jsonnet.org

License:Apache License 2.0


Languages

Language:C++ 72.6%Language:Python 11.8%Language:C 5.3%Language:Shell 4.3%Language:HTML 2.2%Language:Java 1.2%Language:CMake 1.1%Language:Makefile 0.9%Language:CSS 0.6%