summaryrefslogtreecommitdiff
path: root/scripts/create_db.sh
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/create_db.sh')
-rw-r--r--scripts/create_db.sh27
1 files changed, 27 insertions, 0 deletions
diff --git a/scripts/create_db.sh b/scripts/create_db.sh
new file mode 100644
index 0000000..c0e759c
--- /dev/null
+++ b/scripts/create_db.sh
@@ -0,0 +1,27 @@
+#!/bin/bash
+echo "choose a password for the database:"
+read input
+echo "use xampp's version of mariadb? [y/n]"
+read answer
+
+if [[ $answer == 'y' ]] then
+ mariadb="/opt/lampp/bin/mariadb"
+else
+ mariadb="mariadb"
+fi
+
+echo "use sudo? [y/n]"
+read answer
+
+if [[ $answer == 'y' ]] then
+ sudo="sudo"
+fi
+
+echo "creating database..."
+$sudo $mariadb -u root <<EOF
+$(cat scripts/create_user.sql)
+EOF
+
+echo '$input'
+
+$sudo $mariadb -u root < ./scripts/create_db.sql