This commit is contained in:
GotPPay
2017-10-16 12:36:23 +02:00
parent c570d10a77
commit 8a7f8794cf
10 changed files with 480 additions and 3 deletions

View File

@@ -1,10 +1,15 @@
const express = require('express')
const app = express()
require('dotenv').config()
const app = express()
const router = express.Router();
/*
app.get('/', function (req, res) {
res.send('Hello World!')
})
*/
app.listen(3000, function () {
console.log('Example app listening on port 3000!')
app.listen(3005, function () {
console.log('server na portu 3005');
})