This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| sudo apt update | |
| sudo apt install postgresql postgresql-contrib | |
| sudo -u postgres psql | |
| CREATE DATABASE test_database; | |
| CREATE USER test_user WITH password 'qwerty'; | |
| GRANT ALL ON DATABASE test_database TO test_user; |