Skip to content

Instantly share code, notes, and snippets.

@withzombies
Created July 24, 2015 19:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save withzombies/3dfa993b050b1ba5253f to your computer and use it in GitHub Desktop.
Save withzombies/3dfa993b050b1ba5253f to your computer and use it in GitHub Desktop.
getting libreboard working
1 sudo apt-get update
2 sudo apt-get dist-upgrade
3 sudo reboot
4 ls
5 sudo shutdown -h now
6 sudo apt-get install git
7 git clone http://git.libreboard.com/libreboard/libreboard.git
8 ls
9 df -h
10 mkdir node
11 cd node
12 ls
13 wget http://nodejs.org/dist/v0.10.36/node-v0.10.36-linux-x64.tar.gz
14 ls
15 tar zxf node-v0.10.36-linux-x64.tar.gz
16 ls
17 cd node-v0.10.36-linux-x64/
18 ls
19 sudo cp -r bin include lib share /usr/
20 cd ..
21 ls
22 node
23 node -v
24 ls
25 npm
26 cd ..
27 ls
28 cd libreboard/
29 ls
30 cat build
31 curl https://install.meteor.com/ | sh
32 ls
33 cat build
34 ls
35 meteor build ../libreboard_build --directory
36 cd
37 ls
38 mv libreboard libreboard_src
39 cd libreboard_build/
40 ls
41 cd bundle/programs/server/
42 npm install
43 ls
44 export PORT=8080
45 export MONGO_URL="mongodb://localhost:27017/libreboard"
46 export ROOT_URL="http://trello.local"
70 sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 7F0CEB10
71 echo "deb http://repo.mongodb.org/apt/ubuntu "$(lsb_release -sc)"/mongodb-org/3.0 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-org-3.0.list
72 sudo apt-get update
73 sudo apt-get install -y mongodb-org
74 ls
75 ps aux | grep mongo
76 cd
77 ls
78 cd libreboard_build/
79 ls
80 cd bundle/
81 ls
82 node main.js
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment