# install libpq and psql
arch -arm64 brew install libpq
# install diesel cli
cargo install --target=aarch64-apple-darwin diesel_cli --no-default-features --features postgres
docker compose up
cargo run --target=aarch64-apple-darwin --bin show_websites
./target/aarch64-apple-darwin/debug/show_websites
# get the password from the compose.yml
DB_USER=anuaimi
DB_NAME=travel
psql -h localhost -U $DB_USER -d $DB_NAME