You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
834 B
37 lines
834 B
var express = require('express');
|
|
var app = express();
|
|
var crontab = require("./crontab");
|
|
|
|
// include the routes
|
|
var routes = require("./routes").routes;
|
|
|
|
// set the view engine to ejs
|
|
app.set('view engine', 'ejs');
|
|
|
|
// include all folders
|
|
app.use(express.static(__dirname + '/public'));
|
|
app.use(express.static(__dirname + '/public/css'));
|
|
app.use(express.static(__dirname + '/public/js'));
|
|
|
|
//set port
|
|
app.set('port', (process.env.PORT || 8000));
|
|
|
|
app.get(routes.root, function(req, res) {
|
|
// get all the crontabs
|
|
crontab.crontabs( function(docs){
|
|
console.log(docs);
|
|
res.render('index', {
|
|
routes : routes,
|
|
crontabs : docs
|
|
});
|
|
});
|
|
})
|
|
|
|
app.get(routes.save, function(req, res) {
|
|
res.render('index');
|
|
})
|
|
|
|
app.listen(app.get('port'), function() {
|
|
console.log("Crontab UI is running at localhost:" + app.get('port'))
|
|
})
|