Diff of /init.sh [000000] .. [0d34a1]

Switch to side-by-side view

--- a
+++ b/init.sh
@@ -0,0 +1,22 @@
+#! /bin/bash
+
+# Running as root
+sudo -s
+
+apt update
+apt install -y python3 pip nodejs npm
+git clone https://github.com/AbhiSinha08/stress-detection.git
+cd stress-detection
+pip install -r requirements.txt
+pip install jupyter numpy pandas scikit-learn flask flask_cors
+
+cd client
+npm install --save-dev
+cd ..
+
+chmod +x train.sh
+chmod +x server.sh
+
+./train.sh
+
+sudo ./server.sh
\ No newline at end of file