first commit

This commit is contained in:
CHIEFSOFT\ameye
2024-02-23 16:40:46 -05:00
commit 2b4a01a525
11 changed files with 450 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
const express = require('express');
const logger = require('./app/logger');
const port = process.env.PORT || 3000;
const app = express();
const routes = require('./api/routes');
routes(app);
app.listen(port, "0.0.0.0", function() {
logger.info('***** Server started on port: ' + port + ' *****');
});