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

Signed-off-by: moson <moson@archlinux.org>
2023-10-26 12:40:27 +02: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 "$@"