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.
20 lines
580 B
20 lines
580 B
var builder = require('../lib/builder');
|
|
|
|
exports.get = function (req, res) {
|
|
res.render('manual');
|
|
};
|
|
|
|
exports.post = function (req, res) {
|
|
var options = req.body;
|
|
options.url = "https://github.pos/" + options.owner + "/" + options.reponame;
|
|
options.app = req.app;
|
|
|
|
builder.build(options, function (err, result) {
|
|
console.log("Done processing manual request");
|
|
console.log("Error: " + err);
|
|
//console.log("Result:");
|
|
//console.log(result);
|
|
res.render('manual-done', {err: err, result: result});
|
|
//res.render("manual-done", { err: err, result: result });
|
|
});
|
|
};
|
|
|