aboutsummaryrefslogtreecommitdiff
path: root/setup.sh
diff options
context:
space:
mode:
authorJoel Kronqvist <work.joelkronqvist@gmail.com>2022-10-15 20:05:32 +0300
committerJoel Kronqvist <work.joelkronqvist@gmail.com>2022-10-15 20:05:32 +0300
commitb2925ef2579050c484a552f2cd9c0ffed11fb1e9 (patch)
treecf7708162afe815ef855e8af5e9a1012d2587ff6 /setup.sh
parent98a7a9947828514372d873b88fcdcdf44a358dd3 (diff)
downloadLYLLRuoka-b2925ef2579050c484a552f2cd9c0ffed11fb1e9.tar.gz
LYLLRuoka-b2925ef2579050c484a552f2cd9c0ffed11fb1e9.zip
Bug fixes & started setup.sh
Diffstat (limited to 'setup.sh')
-rwxr-xr-xsetup.sh50
1 files changed, 50 insertions, 0 deletions
diff --git a/setup.sh b/setup.sh
new file mode 100755
index 0000000..548c7d3
--- /dev/null
+++ b/setup.sh
@@ -0,0 +1,50 @@
+#!/bin/sh
+
+echo "WIP. Don't use this yet."
+
+if [ "$(whoami)" != "root" ]; then
+ echo "ERROR: not root. This script installs stuff, so this should be run as root. If you aren't comfortable with it, you can do the installing yourself: it's not hyper advanced."
+ exit
+fi
+
+echo "Install directory for LYLLRuoka? (leave blank for home)\n>"
+read path
+cd path
+
+git clone "https://github.com/JoelHMikael/FoodJS.git"
+
+apt install curl
+curl -fsSL https://deb.nodesource.com/setup_16.x | sudo -E bash -
+apt-get install -y nodejs
+
+npm install mysql2
+
+apt install mysql-server
+echo "\nn\nn\nY\nY\nY\nY\n" | mysql_secure_installation
+echo "CREATE DATABASE lyllruoka;\nUSE lyllruoka;\n\nCREATE TABLE shiftnames (\n\tday INT,\n\tid INT,\n\tname VARCHAR(128) NOT NULL,\n\tPRIMARY KEY (day, id)\n);\nCREATE TABLE classes (\n\tcourse VARCHAR(6) PRIMARY KEY,\n\tclass VARCHAR(4)\n);\nCREATE TABLE shifts (\n\tday INT,\n\tshift INT,\n\tcourse VARCHAR(6),\n\tteacher VARCHAR(4),\n\tclass VARCHAR(4),\n\tPRIMARY KEY (day, course)\n);\nCREATE TABLE devs (\n\tid INT PRIMARY KEY AUTO_INCREMENT,\n\tname VARCHAR(30) NOT NULL,\n\tdescription VARCHAR(128),\n\tcontact VARCHAR(40) DEFAULT ''\n);\nCREATE TABLE stats (\n start DATE PRIMARY KEY,\n uptime INT,\n requests INT,\n requests_per_day INT\n);\nCREATE TABLE exams (\n\tstart DATE,\n\tend DATE,\n\tmessage VARCHAR(256),\n\tPRIMARY KEY (start, end)\n);\nCREATE TABLE foods ( \n week INT,\n day INT,\n vegetarian TINYINT,\n header VARCHAR(15),\n dateString VARCHAR(13),\n food VARCHAR(256)\n);" | mysql
+
+echo "Choose the mysql user hostname (type localhost, if unsure)\n>"
+read host
+echo "Choose the mysql username?\n> "
+read name
+echo "Choose the mysql password?\n>"
+read -s passw
+
+echo "CREATE USER '$name'@'$host' IDENTIFIED BY '$passw';\nGRANT ALL ON lyllruoka.* TO '$name'@'$host';\n"
+echo "{\n\t\"host\": \"$host\",\n\t\"user\": \"$name\",\n\t\"password\": \"$passw\",\n\t\"database\": \"lyllruoka\"\n}" > dblogin.txt
+
+echo "Do you want to create a temporary testing certificate? [Y/n]"
+read ans
+if [ "$ans" == "n" ]; then
+ echo "Install finished!"
+ exit
+fi
+
+openssl genrsa -out key.pem
+echo "FI\nUusimaa\nLohja\nLohjan Yhteislyseon Lukio\n\n\n\n\n" | openssl req -new -key key.pem -out csr.pem
+openssl x509 -req -days 9999 -in csr.pem -signkey key.pem -out cert.pem
+rm csr.pem
+mkdir -p Certificate
+mv -t Certificate key.pem cert.pem
+
+echo "Install finished!"