This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Editors | |
.vscode/ | |
.idea/ | |
# Vagrant | |
.vagrant/ | |
# Mac/OSX | |
.DS_Store |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<select id="input" class="form-control" ng-model="pago.bancodonde" required="required"> | |
<option value="0001"> Banco Central de Venezuela</option> | |
<option value="0003"> Banco Industrial de Venezuela, C.A. Banco Universal</option> | |
<option value="0102"> Banco de Venezuela S.A.C.A. Banco Universal</option> | |
<option value="0104"> Venezolano de Crédito, S.A. Banco Universal</option> | |
<option value="0105"> Banco Mercantil, C.A S.A.C.A. Banco Universal</option> | |
<option value="0108"> Banco Provincial, S.A. Banco Universal</option> | |
<option value="0114"> Bancaribe C.A. Banco Universal</option> | |
<option value="0115"> Banco Exterior C.A. Banco Universal</option> | |
<option value="0116"> Banco Occidental de Descuento, Banco Universal C.A.</option> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var db = mongoose.connect('mongodb://localhost:27017/DB'); | |
// In middleware | |
app.use(function (req, res, next) { | |
// action after response | |
var afterResponse = function() { | |
logger.info({req: req}, "End request"); | |
// any other clean ups |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var mailer = require('nodemailer') | |
var Hapi = require('hapi') | |
var util = require('util') | |
var template = require('swig') | |
var path = require('path') | |
var PORT = process.env.PORT || 8080 | |
var server = new Hapi.Server(PORT) | |
template.init({ |