A common calendar for all things happening around campus.
This is a dining hall menu viewer and API. Needs a separate instance to poll and update the menu regularly.
A listing of all current students and their contact info. Students and alumni can add their own contact information by signing in.
This is a static list of websites, all searching is done client-side. You can edit the views/launchpad.jade file to add/change links.
This is a list of printers, regenerated using the tools/update_printers.sh
script, saved in data/printers.txt
. Need to be updated for new printers and configurations.
You'll need to install Node.js, git, and MongoDB. Optionally the Heroku Toolbelt if you have access to the Heroku servers.
Get Homebrew
brew update
brew install node git mongodb heroku
# node
sudo apt-get install nodejs npm
# git
sudo apt-get install git
# mongodb
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 7F0CEB10
echo 'deb http://downloads-distro.mongodb.org/repo/ubuntu-upstart dist 10gen' | sudo tee /etc/apt/sources.list.d/mongodb.list
sudo apt-get update
sudo apt-get install -y mongodb-org
# heroku
wget -qO- https://toolbelt.heroku.com/install-ubuntu.sh | sh
https://github.com/olin/olinapps Once you have your own fork, clone to your computer locally and install the npm packages.
git clone https://github.com/YourName/olinapps
cd olinapps
npm install
First start a mongodb instance with mongod
.
You can now run the app locally with
node app.js
if you have all of the proper software installed as described above.
mongod &
node app.js
Now you can open a browser and navigate to localhost:3000
and see the app.
After brief code review your branch will be tested on https://stage.olinapps.com and if nothing goes horribly wrong your changes will be merged in to master.
Contact @EvanSimpson for questions.