As configured in my dotfiles.
start new:
tmux
start new with session name:
''' | |
Steps: | |
1. Create any milestones | |
2. Create any labels | |
3. Create each issue, linking them to milestones and labels | |
3.1: Update status for new issue if closed | |
4: Create all the comments for each issue | |
''' | |
import getpass | |
import json |
As configured in my dotfiles.
start new:
tmux
start new with session name:
Prerequisites:
Software components used:
// Based off example code from Hal Robertson | |
// https://github.com/halrobertson/test-restify-passport-facebook | |
// See discussion: https://groups.google.com/forum/?fromgroups#!topic/passportjs/zCz0nXB_gao | |
var restify = require('restify') | |
// config vars | |
var FB_LOGIN_PATH = '/api/facebook_login' | |
var FB_CALLBACK_PATH = '/api/facebook_callback' | |
var FB_APPID = '<<YOUR APPID HERE>>' |
var port = process.env.PORT || 3000; | |
var fs = require('fs'); | |
var express = require('express'); | |
var passport = require('passport') | |
, OAuthStrategy = require('passport-oauth').OAuth2Strategy; | |
passport.serializeUser(function(user, done) { | |
done(null, user); | |
}); |
var application_root = __dirname, | |
express = require("express"), | |
path = require("path"), | |
mongoose = require('mongoose'); | |
var app = express.createServer(); | |
// database | |
mongoose.connect('mongodb://localhost/ecomm_database'); |