Update development.md

This commit is contained in:
Yuri Astrakhan 2023-09-20 16:19:53 -04:00 committed by GitHub
parent 2bef7c0e4b
commit 2f72d38444
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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