PostgreSQL 16 Docker container pre-configured.
git clone --recurse-submodules https://github.com/Brazwed/Database.git
cd Database
sudo ./setup.sh install postgresgit clone https://github.com/Brazwed/db-postgres.git
cd db-postgres
cp .env.example .env
docker compose up -dHost: localhost
Port: 5432
User: postgres
Pass: postgres_dev_2026
Database: devdb
psql -h localhost -p 5432 -U postgres -d devdb
Edit .env:
PG_USER=postgres
PG_PASS=postgres_dev_2026
PG_DB=devdb
PG_PORT=5432