diff options
Diffstat (limited to 'support/doc')
-rw-r--r-- | support/doc/dependencies.md | 31 |
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 | |||
342 | rc-service postgresql-11 start | 342 | rc-service postgresql-11 start |
343 | ``` | 343 | ``` |
344 | 344 | ||
345 | ## OpenBSD | ||
346 | |||
347 | 1. Install Packages: | ||
348 | |||
349 | ``` | ||
350 | pkg_add sudo bash wget git python nginx pkgconf postgresql-server postgresql-contrib redis openssl | ||
351 | ``` | ||
352 | |||
353 | 2. Install yarn: | ||
354 | |||
355 | ``` | ||
356 | npm install --global yarn | ||
357 | ``` | ||
358 | |||
359 | 3. Allow users in the wheel group to use sudo | ||
360 | |||
361 | ``` | ||
362 | visudo | ||
363 | ``` | ||
364 | Uncomment line #43: | ||
365 | |||
366 | ``` | ||
367 | %wheel ALL=(ALL) ALL | ||
368 | ``` | ||
369 | |||
370 | 4. Enable services: | ||
371 | |||
372 | ``` | ||
373 | rcctl enable postgresql redis nginx | ||
374 | ``` | ||
375 | |||
345 | ## Other distributions | 376 | ## Other distributions |
346 | 377 | ||
347 | Feel free to update this file in a pull request! | 378 | Feel free to update this file in a pull request! |