install-sandstorm.sh 406 B

12345678910111213
  1. #!/bin/bash
  2. echo "INSTALLING WEKAN SANDSTORM VERSION RELATED FILES:"
  3. sudo apt-get -y install p7zip-full wget curl
  4. cd ~
  5. wget https://releases.wekan.team/dev/meteor-spk/projects.7z
  6. 7z x projects.7z
  7. rm projects.7z
  8. echo "export PATH=\$PATH:~/projects/meteor-spk/meteor-spk-0.6.0" >> ~/.bashrc
  9. source ~/.bashrc
  10. echo "INSTALL DEV VERSION OF SANDSTORM:"
  11. curl https://install.sandstorm.io | bash
  12. cd ~/repos/wekan