-
Notifications
You must be signed in to change notification settings - Fork 2
/
source-install.sh
28 lines (25 loc) · 1.01 KB
/
source-install.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/bin/bash
echo ">>> Cloning Repositorries"
git clone https://github.com/its4nik/dockstat .
git clone https://github.com/its4nik/dockstatapi .
echo ">>> Done"
echo
echo ">>> Installing dependencies"
echo ">>> INFO: Frontend needs --force because I dont fucking know"
echo ">>> Installing Frontend dependencies"
cd ./dockstat && npm i --force
echo ">>> Done"
echo ">>> Installing backend dependencies"
cd ../dockstatapi && npm i
echo ">>> Done"
cd ..
echo
echo "
############################################################################################
### Thanks for installing DockStat! ###
### ###
### Please see the Wiki, on how to set things up from here: ###
### https://outline.itsnik.de/doc/installation-DaO99bB86q#h-build-from-source-production ###
############################################################################################
exit 0
"