Postgres_DB - XLRIT/gears GitHub Wiki
THIS PAGE IS WORK IN PROGRES
sudo apt update
sudo apt install postgresql postgresql-contrib
sudo systemctl start postgresql.service
Check status: sudo systemctl status postgresql.service
See this tutorial for more info.
sudo -u postgres psql # to open psql (the interactive command line interface to the DB)
\l # to list all DB's
\c <name of DB> # to connect to one DB
\d # to describe all in that DB