v/vlib/pg
Louis Schmieder 5df3d8ac75
orm: mysql fixes (#14772)
2022-06-16 20:19:49 +03:00
..
README.md docs: adding skeleton README.md files for all vlib modules (#13034) 2022-01-05 18:06:08 +02:00
oid.v orm: integrate psql to orm (#10933) 2021-07-24 20:49:40 +03:00
orm.v orm: mysql fixes (#14772) 2022-06-16 20:19:49 +03:00
pg.v fmt: remove space in front of ? and ! (#14366) 2022-05-13 06:56:21 +03:00
pg_orm_test.v orm: integrate psql to orm (#10933) 2021-07-24 20:49:40 +03:00

README.md

Description:

pg is a wrapper for the PostgreSQL client library. It provides access to a PostgreSQL DB server.

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.

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