Skip to content

Instantly share code, notes, and snippets.

@artcommacode
Created August 25, 2014 19:56
Show Gist options
  • Select an option

  • Save artcommacode/035dd14bae63bbee7be3 to your computer and use it in GitHub Desktop.

Select an option

Save artcommacode/035dd14bae63bbee7be3 to your computer and use it in GitHub Desktop.

Revisions

  1. Ryan created this gist Aug 25, 2014.
    9 changes: 9 additions & 0 deletions gistfile1.txt
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,9 @@
    var express = require('express')
    , admin = require('./admin/app')
    , client = require('./client/app')
    , app = module.exports = express();

    app.use('/admin', admin);
    app.use(client);

    app.listen(3009);