Skip to content

Commit

Permalink
updated files
Browse files Browse the repository at this point in the history
  • Loading branch information
evanjmg committed Aug 29, 2015
1 parent 9c1f808 commit 1df7863
Show file tree
Hide file tree
Showing 29 changed files with 12 additions and 190 deletions.
12 changes: 0 additions & 12 deletions .elasticbeanstalk/config.yml

This file was deleted.

5 changes: 1 addition & 4 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,2 @@
/node_modules
# Elastic Beanstalk Files
.elasticbeanstalk/*
!.elasticbeanstalk/*.cfg.yml
!.elasticbeanstalk/*.global.yml

Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
21 changes: 10 additions & 11 deletions app.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,18 +23,17 @@ app.set('view engine', 'ejs');
// Setup SASS directories
var path = require('path');

app.use(sassMiddleware({
src: path.join(__dirname + '/sass'),
dest: path.join(__dirname + '/public/stylesheets'),
debug: true,
force: true,
prefix: '/stylesheets',
outputStyle: 'compressed',
outputStyle: 'expanded'
}),
// app.use(sassMiddleware({
// src: path.join(__dirname + '/sass'),
// dest: path.join(__dirname + '/public/stylesheets'),
// debug: true,
// force: true,
// prefix: '/stylesheets',
// outputStyle: 'compressed'
// }),
// The static middleware must come after the sass middleware
express.static(path.join(__dirname, 'public'))
)
app.use(express.static(__dirname + '/public'));


var databaseURL = process.env.MONGOLAB_URI ||'mongodb://localhost/welunch';
mongoose.connect(databaseURL);
Expand Down
Binary file removed awscli-bundle.zip
Binary file not shown.
138 changes: 0 additions & 138 deletions awscli-bundle/install

This file was deleted.

Binary file removed awscli-bundle/packages/argparse-1.2.1.tar.gz
Binary file not shown.
Binary file removed awscli-bundle/packages/awscli-1.8.0.tar.gz
Binary file not shown.
Binary file removed awscli-bundle/packages/botocore-1.1.11.tar.gz
Binary file not shown.
Binary file removed awscli-bundle/packages/colorama-0.3.3.tar.gz
Binary file not shown.
Binary file removed awscli-bundle/packages/docutils-0.12.tar.gz
Binary file not shown.
Binary file removed awscli-bundle/packages/jmespath-0.7.1.tar.gz
Binary file not shown.
Binary file removed awscli-bundle/packages/ordereddict-1.1.tar.gz
Binary file not shown.
Binary file removed awscli-bundle/packages/pyasn1-0.1.8.tar.gz
Binary file not shown.
Binary file removed awscli-bundle/packages/python-dateutil-2.4.2.tar.gz
Binary file not shown.
Binary file removed awscli-bundle/packages/rsa-3.1.4.tar.gz
Binary file not shown.
Binary file removed awscli-bundle/packages/simplejson-3.3.0.tar.gz
Binary file not shown.
Binary file removed awscli-bundle/packages/six-1.9.0.tar.gz
Binary file not shown.
Binary file removed awscli-bundle/packages/virtualenv-13.0.3.tar.gz
Binary file not shown.
2 changes: 1 addition & 1 deletion config/passport.js
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ module.exports = function(passport, app){
passport.use('linkedin', new LinkedInStrategy({
clientID: process.env.LINKEDIN_API_KEY,
clientSecret: process.env.LINKEDIN_SECRET_KEY,
callbackURL: "http://localhost:8000/api/users/auth/linkedin/callback",
callbackURL: "/api/users/auth/linkedin/callback",
scope: ['r_emailaddress', 'r_basicprofile'],
state: true
// profileFields : ['id','emails', 'location', 'industry']
Expand Down
24 changes: 0 additions & 24 deletions npm-debug.log

This file was deleted.

0 comments on commit 1df7863

Please sign in to comment.