]> Untitled Git - lemmy.git/commitdiff
Create db-init.sh
authorRichie Zhang <12566991+StaticallyTypedRice@users.noreply.github.com>
Thu, 6 Feb 2020 02:15:28 +0000 (18:15 -0800)
committerGitHub <noreply@github.com>
Thu, 6 Feb 2020 02:15:28 +0000 (18:15 -0800)
server/db-init.sh [new file with mode: 0644]

diff --git a/server/db-init.sh b/server/db-init.sh
new file mode 100644 (file)
index 0000000..77b9a6d
--- /dev/null
@@ -0,0 +1,12 @@
+#!/bin/bash
+
+username=lemmy
+dbname=lemmy
+port=5432
+
+read -p "Enter database password: " -s password
+echo
+
+psql -c "CREATE USER $username WITH PASSWORD '$password' SUPERUSER;" -U postgres
+psql -c 'CREATE DATABASE $dbname WITH OWNER $username;' -U postgres
+export LEMMY_DATABASE_URL=postgres://$username:$password@localhost:$port/$dbname