mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
pg: create readme.md
This commit is contained in:
parent
ddd5a9443d
commit
7e1870be3e
25
vlib/pg/readme.md
Normal file
25
vlib/pg/readme.md
Normal file
@ -0,0 +1,25 @@
|
||||
Before you can use this module, you must first have PostgreSQL installed on
|
||||
your system. To do this, find your OS and perform the actions listed.
|
||||
|
||||
**NOTE**: These instructions are meant only as a convenience. If your OS is not
|
||||
listed or you need extra help, [go here](https://www.postgresql.org/download/).
|
||||
|
||||
### Fedora 31
|
||||
```
|
||||
sudo dnf install postgresql-server postgresql-contrib
|
||||
sudo systemctl enable postgresql # to autostart on startup
|
||||
sudo systemctl start postgresql
|
||||
```
|
||||
|
||||
### Debian 10/11
|
||||
```
|
||||
sudo apt-get install postgresql postgresql-client
|
||||
sudo systemctl enable postgresql # to autostart on startup
|
||||
sudo systemctl start postgresql
|
||||
```
|
||||
|
||||
### MacOSX (Homebrew)
|
||||
```
|
||||
brew install postgresql
|
||||
brew services start postgresql
|
||||
```
|
Loading…
Reference in New Issue
Block a user