aboutsummaryrefslogtreecommitdiffhomepage
path: root/support
diff options
context:
space:
mode:
Diffstat (limited to 'support')
-rw-r--r--support/doc/dependencies.md31
1 files changed, 31 insertions, 0 deletions
diff --git a/support/doc/dependencies.md b/support/doc/dependencies.md
index 20aac9596..f4d0bd5c4 100644
--- a/support/doc/dependencies.md
+++ b/support/doc/dependencies.md
@@ -342,6 +342,37 @@ rc-service redis start
342rc-service postgresql-11 start 342rc-service postgresql-11 start
343``` 343```
344 344
345## OpenBSD
346
3471. Install Packages:
348
349```
350pkg_add sudo bash wget git python nginx pkgconf postgresql-server postgresql-contrib redis openssl
351```
352
3532. Install yarn:
354
355```
356npm install --global yarn
357```
358
3593. Allow users in the wheel group to use sudo
360
361```
362visudo
363```
364Uncomment line #43:
365
366```
367%wheel ALL=(ALL) ALL
368```
369
3704. Enable services:
371
372```
373rcctl enable postgresql redis nginx
374```
375
345## Other distributions 376## Other distributions
346 377
347Feel free to update this file in a pull request! 378Feel free to update this file in a pull request!