mirror of
https://github.com/iv-org/invidious.git
synced 2024-11-10 01:01:57 +01: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
|