postgres url with username and password code example
Example 1: how to connect postgres user password using command line
sudo -u postgres psql postgres
Example 2: create postgres user
CREATE DATABASE yourdbname;
CREATE USER youruser WITH ENCRYPTED PASSWORD 'yourpass';
GRANT ALL PRIVILEGES ON DATABASE yourdbname TO youruser;