summarylogtreecommitdiffstats
path: root/install.sh
diff options
context:
space:
mode:
authorLeon2021-04-25 16:23:56 +0200
committerLeon2021-04-25 16:23:56 +0200
commitcd2b552476eed49364a9d45ed4842b47754f5e18 (patch)
treefa9dfc322070f5d52be206c62b3acdbc878650c6 /install.sh
parente993e729a8fa942ecf5b970f0d1372faf10d3daa (diff)
downloadaur-cd2b552476eed49364a9d45ed4842b47754f5e18.tar.gz
Update to 5.x - Change to Electron 11
Diffstat (limited to 'install.sh')
-rwxr-xr-xinstall.sh1
1 files changed, 1 insertions, 0 deletions
diff --git a/install.sh b/install.sh
index f0266b28d7e0..2309b5acac04 100755
--- a/install.sh
+++ b/install.sh
@@ -53,6 +53,7 @@ setup_postgres() {
sudo -u postgres -g postgres -H -- psql -c "CREATE DATABASE karaokemugen_app ENCODING 'UTF8';"
sudo -u postgres -g postgres -H -- psql -c "CREATE USER karaokemugen_app WITH ENCRYPTED PASSWORD 'musubi'; GRANT ALL PRIVILEGES ON DATABASE karaokemugen_app TO karaokemugen_app;"
sudo -u postgres -g postgres -H -- psql -d karaokemugen_app -c "CREATE EXTENSION unaccent;"
+ sudo -u postgres -g postgres -H -- psql -d karaokemugen_app -c "CREATE EXTENSION pgcrypto;"
echo -e "${_COL_GREEN_}karaokemugen_app database created!"
}