This commit is contained in:
GotPPay
2017-12-07 12:36:41 +01:00
parent 229b90495d
commit ab51d436ce
10 changed files with 223757 additions and 0 deletions

5
backend/config.js Normal file
View File

@@ -0,0 +1,5 @@
var config = {};
config.PORT = 3000;
module.exports = config;

6
backend/server.js Normal file
View File

@@ -0,0 +1,6 @@
const express = require('express');
const config = require('./config');
const app = express();
app.listen(config.PORT, ()=>{console.log('Server running on port ' + config.PORT)});