Skip to content

Commit

Permalink
Update development.md
Browse files Browse the repository at this point in the history
  • Loading branch information
nyurik authored Sep 20, 2023
1 parent 2bef7c0 commit 2f72d38
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions docs/src/development.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,18 @@ Fork Martin repo into your own GitHub account, and add your fork as a remote
git remote add origin _URL_OF_YOUR_FORK_
```

Install [docker](https://docs.docker.com/get-docker/), [docker-compose](https://docs.docker.com/compose/), and [openssl](https://www.openssl.org/):
Install [docker](https://docs.docker.com/get-docker/) and [docker-compose](https://docs.docker.com/compose/)

```shell, ignore
# Ubuntu-based distros have an older version that might also work:
sudo apt install -y docker.io docker-compose
```

Install a few libs and tools like [openssl](https://www.openssl.org/):

```shell, ignore
# For Ubuntu-based distros
sudo apt install -y docker.io docker-compose libssl-dev
sudo apt install -y libssl-dev build-essential pkg-config jq file
```

Install [Just](https://github.com/casey/just#readme) (improved makefile processor). Note that some Linux and Homebrew distros have outdated versions of Just, so you should install it from source:
Expand Down

0 comments on commit 2f72d38

Please sign in to comment.