3
0
mirror of https://github.com/reality/dbot.git synced 2024-11-24 04:49:25 +01:00
dbot/modules/web.js
2011-09-13 21:55:20 +01:00

24 lines
483 B
JavaScript

var express = require('express');
var webInterface = function(dbot) {
var dbot = dbot;
var pub = '../public';
var app = express.createServer();
app.use(express.compiler({ src: pub, enable: ['sass'] }));
app.use(express.static(pub));
app.set('view engine', 'jade');
app.get('/', function(req, res) {
res.render('index', { });
});
app.listen(1337);
return { };
};
exports.fetch = function(dbot) {
return webInterface(dbot);
};