aurweb/docker/test-postgres-entrypoint.sh
moson 5e803283ec
feat: Switch to postgres
WIP!

Signed-off-by: moson <moson@archlinux.org>
2023-11-12 21:05:38 +01:00

15 lines
439 B
Bash
Executable file

#!/bin/bash
set -eou pipefail
# Setup a config for our postgres db via socket connection.
aurweb-config set database name 'aurweb'
aurweb-config set database user 'aur'
aurweb-config set database socket '/run/postgresql'
aurweb-config unset database host
aurweb-config unset database port
aurweb-config unset database password
# Setup notifications for testing.
aurweb-config set notifications sendmail "$(pwd)/util/sendmail"
exec "$@"