Add OpenBSD instructions to dependencies.md
First time making a pull request. Please let me know if I am doing this wrong
This commit is contained in:
parent
3933a127d2
commit
80428d16a0
1 changed files with 31 additions and 0 deletions
|
@ -342,6 +342,37 @@ rc-service redis start
|
|||
rc-service postgresql-11 start
|
||||
```
|
||||
|
||||
## OpenBSD
|
||||
|
||||
1. Install Packages:
|
||||
|
||||
```
|
||||
pkg_add sudo bash wget git python nginx pkgconf postgresql-server postgresql-contrib redis openssl
|
||||
```
|
||||
|
||||
2. Install yarn:
|
||||
|
||||
```
|
||||
npm install --global yarn
|
||||
```
|
||||
|
||||
3. Allow users in the wheel group to use sudo
|
||||
|
||||
```
|
||||
visudo
|
||||
```
|
||||
Uncomment line #43:
|
||||
|
||||
```
|
||||
%wheel ALL=(ALL) ALL
|
||||
```
|
||||
|
||||
4. Enable services:
|
||||
|
||||
```
|
||||
rcctl enable postgresql redis nginx
|
||||
```
|
||||
|
||||
## Other distributions
|
||||
|
||||
Feel free to update this file in a pull request!
|
||||
|
|
Loading…
Reference in a new issue