aboutsummaryrefslogtreecommitdiff
path: root/install.sh
blob: a89b44be2fa7fdc93376779d16ec535713592e21 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/bash

git clone https://github.com/asciimoo/searx.git
cd searx
git checkout v0.13.1
cd ..
for file in $(ls src); do
  ln -s ../../../src/$file searx/searx/engines/$file
  if [[ $file == "settings.yml" ]]; then
    ln -s ../../src/settings.yml searx/searx/settings.yml
  fi
done
virtualenv venv -p python2.7
source venv/bin/activate
./searx/manage.sh update_packages