mirror of
https://github.com/balkian/hookio-sparql-demo.git
synced 2024-11-21 10:52:28 +00:00
Merge branch 'master' of github.com:balkian/hookio-sparql-demo
Conflicts: package.json
This commit is contained in:
commit
e2821d4641
49
install.sh
49
install.sh
@ -1,49 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
# For Ubuntu: apt-get install libavahi-compat-libdnssd-dev
|
|
||||||
function fetch(){
|
|
||||||
echo "Fetching project from Github"
|
|
||||||
git clone https://github.com/balkian/Web4.0.git Web4.0
|
|
||||||
cd Web4.0
|
|
||||||
}
|
|
||||||
function install_npm(){
|
|
||||||
echo "Installing NPM"
|
|
||||||
curl http://npmjs.org/install.sh | sudo sh
|
|
||||||
}
|
|
||||||
function install_node(){
|
|
||||||
echo "Instaling nodejs"
|
|
||||||
sudo apt-get install nodejs-dev
|
|
||||||
#sudo sudo npm install hook.io
|
|
||||||
#sudo npm install hookio/hooks/*
|
|
||||||
}
|
|
||||||
function install_package(){
|
|
||||||
echo "Installing npm package"
|
|
||||||
sudo npm install $1
|
|
||||||
}
|
|
||||||
|
|
||||||
while getopts ":agupi" opt;do
|
|
||||||
case $opt in
|
|
||||||
a)
|
|
||||||
fetch;
|
|
||||||
install_node;
|
|
||||||
install_npm;
|
|
||||||
install_package .;
|
|
||||||
;;
|
|
||||||
g)
|
|
||||||
fetch;
|
|
||||||
;;
|
|
||||||
u)
|
|
||||||
install_npm;
|
|
||||||
;;
|
|
||||||
p)
|
|
||||||
install_package;
|
|
||||||
;;
|
|
||||||
i)
|
|
||||||
install_npm;
|
|
||||||
install_node;
|
|
||||||
;;
|
|
||||||
\?)
|
|
||||||
echo "Probably you want to run $0 -a"
|
|
||||||
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
done
|
|
Loading…
Reference in New Issue
Block a user