blob: 91cc673a947542941902a3e46a02c22cfdf324b1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
sudo apt-get install nodejs npm python3 python3-venv python3-pip make gcc sqlite3 libsqlite3-dev nginx
sudo npm i -g typescript yarn
yarn
python3 -m venv venv
source venv/bin/activate
pip install -r requirements.txt
git submodule init database/SQLiteFuzzySearch
git submodule update
cd database
sh init_db.sh
make
cd ..
cd voerbak
make
cd ..
sed "s/user nobody/user $(whoami)/" -i ./nginx.conf
|