mirror of
https://github.com/iv-org/invidious
synced 2024-11-08 14:33:39 -05:00
7 lines
172 B
Bash
Executable file
7 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
|