summaryrefslogtreecommitdiff
path: root/rust/scripts/create_db.sh
diff options
context:
space:
mode:
Diffstat (limited to 'rust/scripts/create_db.sh')
-rw-r--r--rust/scripts/create_db.sh10
1 files changed, 10 insertions, 0 deletions
diff --git a/rust/scripts/create_db.sh b/rust/scripts/create_db.sh
new file mode 100644
index 0000000..cddcdd9
--- /dev/null
+++ b/rust/scripts/create_db.sh
@@ -0,0 +1,10 @@
+#!/bin/bash
+echo "choose a password for the database: 'input;"
+read input
+echo $(pwd)
+echo "creating database..."
+sudo mariadb -u root <<EOF
+$(cat scripts/create_user.sql)
+EOF
+
+sudo mariadb -u root < ./scripts/create_db.sql