Skip to content

Instantly share code, notes, and snippets.

@kamiyaowl
Created March 18, 2014 19:23
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save kamiyaowl/9627434 to your computer and use it in GitHub Desktop.
Save kamiyaowl/9627434 to your computer and use it in GitHub Desktop.
heroku deploy static files
web: node server.js
var express = require('express');
var app = express();
app.set('port', process.env.PORT || 3000);
app.use(express.logger('dev'));
app.use(express.compress());
app.use(express.static(__dirname + '/public'));////
app.listen(app.get('port'), function() {
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment