mirror of
https://gitea.invidious.io/iv-org/invidious-copy-2022-04-11.git
synced 2024-08-15 00:43:26 +00:00
6 lines
172 B
Bash
Executable file
6 lines
172 B
Bash
Executable file
#!/bin/sh
|
|
|
|
[ -z "$POSTGRES_USER" ] && POSTGRES_USER=kemal
|
|
[ -z "$POSTGRES_DB" ] && POSTGRES_DB=invidious
|
|
|
|
psql "$POSTGRES_DB" "$POSTGRES_USER" < config/sql/annotations.sql
|