summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorGravatar bouncepaw2023-05-13 15:08:30 +0000
committerGravatar bouncepaw2023-05-13 15:08:30 +0000
commitc079d530e33c0e354e2f0345381c50b26dd36593 (patch)
treed0aa26b23cf95ddbd2739e79abc6fa11e88529a4 /README.md
parentVersion 2.31 RELEASED. (diff)
downloadsnac2-c079d530e33c0e354e2f0345381c50b26dd36593.tar.gz
snac2-c079d530e33c0e354e2f0345381c50b26dd36593.tar.xz
snac2-c079d530e33c0e354e2f0345381c50b26dd36593.zip
Reformat the codeblocks in README.md
1. Remove the extra indent 2. Add `sh` language
Diffstat (limited to 'README.md')
-rw-r--r--README.md16
1 files changed, 8 insertions, 8 deletions
diff --git a/README.md b/README.md
index 3f4978d..11c1fae 100644
--- a/README.md
+++ b/README.md
@@ -30,22 +30,22 @@ This program is written in highly portable ANSI C. The only external dependencie
30 30
31On Debian/Ubuntu, you can satisfy these requirements by running 31On Debian/Ubuntu, you can satisfy these requirements by running
32 32
33``` 33```sh
34 apt install libssl-dev libcurl4-openssl-dev 34apt install libssl-dev libcurl4-openssl-dev
35``` 35```
36 36
37On OpenBSD you just need to install `curl`: 37On OpenBSD you just need to install `curl`:
38 38
39``` 39```sh
40 pkg_add curl 40pkg_add curl
41``` 41```
42 42
43Run `make` and then `make install` as root. 43Run `make` and then `make install` as root.
44 44
45From version 2.27, `snac` includes support for the Mastodon API; if you are not interested on it, you can compile it out by running 45From version 2.27, `snac` includes support for the Mastodon API; if you are not interested on it, you can compile it out by running
46 46
47``` 47```sh
48 make CFLAGS=-DNO_MASTODON_API 48make CFLAGS=-DNO_MASTODON_API
49``` 49```
50 50
51See the administrator manual on how to proceed from here. 51See the administrator manual on how to proceed from here.
@@ -54,8 +54,8 @@ See the administrator manual on how to proceed from here.
54 54
55A `docker-compose` file is provided for development and testing. To start snac with an nginx HTTPS frontend, run: 55A `docker-compose` file is provided for development and testing. To start snac with an nginx HTTPS frontend, run:
56 56
57``` 57```sh
58 docker-compose build && docker-compose up 58docker-compose build && docker-compose up
59``` 59```
60 60
61This will: 61This will: