Skip to content

Instantly share code, notes, and snippets.

Screensharing using chromecast

Download this package

open terminal cd into this directory and run node app.js

@mlakkadshaw
mlakkadshaw / install_sentry.sh
Created October 1, 2015 11:51 — forked from bjmc/install_sentry.sh
Basic setup script for installing Sentry (http://getsentry.com) + Redis on new Ubuntu 14.04 Amazon EC2 instance
#! /bin/bash
export RUN_AS='sentry';
export INSTALL_DIR='/var/www/sentry';
HOSTNAME='http://mysentry.example.com'; # No trailing slash
DB_HOST='something.rds.amazonaws.com';
DB_PORT='5432';
DB_USER='sentry';
DB_NAME='sentry';
DB_PASSWORD='DB_PASSWORD';