November 2018
Intermediate to advanced
404 pages
10h 16m
English
PostgreSQL is the recommended native database driver for both Vapor and Kitura. The database is an open source project designed for enterprise use. PostgreSQL is designed for reliability, extensibility, and standards-compliance. Most cloud hosting services include PostgreSQL as one of the database provider options.
To use PostgreSQL on your system, you must install the PostgreSQL client locally. On macOS, use brew to install the PostgreSQL client and start the postgresql service:
$ brew install postgresql$ brew services start postgresql
On Linux, use apt-get to install the PostgreSQL client and then start the service:
$ sudo apt-get install libpq-dev$ sudo service postgresql start
If you have the pgAdmin 4 GUI client ...
Read now
Unlock full access