1# Contributing to Boost.JSON
2
3## Quickstart
4
5Here is minimal sequence of steps required to prepare development environment:
6
71. Download Boost superproject
82. Download Boost.JSON
93. Bootstrap Boost
104. Build Boost.JSON tests, benchmarks and examples
11
12```
13git clone --recurse-submodules --jobs 8 https://github.com/boostorg/boost.git
14cd boost/libs
15git clone --recurse-submodules https://github.com/cppalliance/json.git
16cd ..
17./bootstrap.sh
18./b2 headers
19cd libs/json
20../../b2 test
21../../b2 bench
22../../b2 example
23```
24