summaryrefslogtreecommitdiff
path: root/install-pixelated.sh
blob: 5acddee2ccc75c056bc88c922281767e1ed55189 (plain)
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#!/bin/bash

# test dependencies
function check_installed() {
        which $1
        if [ $? -ne 0 ]; then
                echo "## You must have ${1} installed and in the PATH to run Pixelated-User-Agent"
                echo "## exiting..."
                exit 1
        fi
}

for dependency in node npm ruby bundle virtualenv; do
        check_installed $dependency     
done

# clone repo
git clone https://github.com/pixelated-project/pixelated-user-agent

# install web-ui dependencies
cd pixelated-user-agent/web-ui
npm install
node_modules/bower/bin/bower install
bundle install

# install service dependencies
cd ../service
virtualenv .virtualenv
source .virtualenv/bin/activate
./go develop --always-unzip

# run service
cat <<EOF

###############

## You will need an account in a LEAP provider. You may find some at http://bitmask.net/

## Once you have it, modify the service/pixelated.example file and move it to ~/.pixelated

## You might also need to add your LEAP provider ssl certificate to the pixelated/certificates folder, named as your provider domain name (in case it uses TLS):
##      - example: your.leapprovider.org.crt

## Once you are done, just run:
##        pixelated-user-agent

EOF