Skip to content

Instantly share code, notes, and snippets.

@ellipsonic
ellipsonic / neo4jServerDeploy.sh
Created July 21, 2015 15:09
Neo4j Server Deploy
# Update system files
apt-get update
apt-get install -y sudo
# Install dependencies
sudo apt-get install -y git
sudo apt-get install -y openjdk-7-jdk
# Git all files
@ellipsonic
ellipsonic / keystone.sh
Created July 29, 2015 13:45
KeystoneDemo
# Install dependencies
sudo apt-get install python-software-properties
sudo apt-get install -y curl
# Install nodejs and npm
curl -sL https://deb.nodesource.com/setup_0.12 | sudo bash -
sudo apt-get install -y nodejs
sudo apt-get update
# Install mongoDB
@ellipsonic
ellipsonic / CanvasLMS.sh
Last active August 29, 2015 14:26
InstructureCanvas
#!/bin/bash
# BEGIN-NOTICE
# Copyright (C) 2014 Benjamin Porter
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
# Update core
sudo apt-get update
# Install dependencies
sudo apt-get install python-pip python-dev build-essential
# Install Wagtail
pip install wagtail
# Start your site
# Update
sudo apt-get -y update
# Install git and curl
sudo apt-get -y install curl
sudo apt-get -y install git
# Clone the repo
git clone git://github.com/c9/core.git c9sdk
cd c9sdk
@ellipsonic
ellipsonic / RocketChat.sh
Created August 8, 2015 17:08
Meteor Rocket Chat
# Update
sudo apt-get -y update
# Install git and curl
sudo apt-get -y install curl
sudo apt-get -y install git
sudo apt-get -y install mongodb
# Install meteor
sudo curl https://install.meteor.com/ | sh
@ellipsonic
ellipsonic / medacenterjs.sh
Created August 8, 2015 17:20
Mediacenter
# Update
sudo apt-get -y update
# Install CURL
sudo apt-get -y install curl
curl -sL https://deb.nodesource.com/setup | sudo bash -
# Install Nodejs and Build essentials
sudo apt-get -y install nodejs
sudo apt-get -y install npm
@ellipsonic
ellipsonic / TodoApp.sh
Created August 8, 2015 17:22
MeteorToDo
# Update
sudo apt-get -y update
# Install git and curl
sudo apt-get -y install curl
sudo apt-get -y install git
sudo apt-get -y install mongodb
# Install meteor
sudo curl https://install.meteor.com/ | sh
@ellipsonic
ellipsonic / LocalMarket.sh
Last active August 29, 2015 14:26
MeteorLocalMarket
# Update
sudo apt-get -y update
# Install git and curl
sudo apt-get -y install curl
sudo apt-get -y install git
sudo apt-get -y install mongodb
# Install meteor
sudo curl https://install.meteor.com/ | sh
@ellipsonic
ellipsonic / odoo8.sh
Last active August 29, 2015 14:27
Odoo8
sudo iptables -t nat -A PREROUTING -i eth0 -p tcp --dport 80 -j DNAT --to-destination $(hostname -i):8069
sudo iptables -A INPUT -p tcp --dport 80 -j ACCEPT
sudo apt-get install openssh-server
sudo apt-get update
sudo apt-get dist-upgrade
sudo adduser --system --home=/opt/odoo --group odoo
sudo su - odoo -s /bin/bash
exit