From 9de57021a371cdbf87a3a758b88ecd3c945eeea9 Mon Sep 17 00:00:00 2001 From: Omar Roth Date: Sun, 1 Mar 2020 10:30:55 -0500 Subject: [PATCH] Update postgres setup --- README.md | 3 +++ docker/entrypoint.postgres.sh | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 6f6e33dcd..bc4b7b28e 100644 --- a/README.md +++ b/README.md @@ -161,6 +161,9 @@ $ psql invidious kemal < config/sql/users.sql $ psql invidious kemal < config/sql/session_ids.sql $ psql invidious kemal < config/sql/nonces.sql $ psql invidious kemal < config/sql/annotations.sql +$ psql invidious kemal < config/sql/privacy.sql +$ psql invidious kemal < config/sql/playlists.sql +$ psql invidious kemal < config/sql/playlist_videos.sql # Setup Invidious $ shards update && shards install diff --git a/docker/entrypoint.postgres.sh b/docker/entrypoint.postgres.sh index f5fce3093..1588c56cf 100755 --- a/docker/entrypoint.postgres.sh +++ b/docker/entrypoint.postgres.sh @@ -19,9 +19,9 @@ if [ ! -f /var/lib/postgresql/data/setupFinished ]; then su postgres -c 'psql invidious kemal < config/sql/session_ids.sql' su postgres -c 'psql invidious kemal < config/sql/nonces.sql' su postgres -c 'psql invidious kemal < config/sql/annotations.sql' + su postgres -c 'psql invidious kemal < config/sql/privacy.sql' su postgres -c 'psql invidious kemal < config/sql/playlists.sql' su postgres -c 'psql invidious kemal < config/sql/playlist_videos.sql' - su postgres -c 'psql invidious kemal < config/sql/privacy.sql' touch /var/lib/postgresql/data/setupFinished echo "### invidious database setup finished" exit