Intitial project structure with express.js

This commit is contained in:
2023-10-28 23:22:18 -04:00
parent fa67371b44
commit 092b7d8cc2
6 changed files with 812 additions and 0 deletions

6
src/routes/index.js Normal file
View File

@ -0,0 +1,6 @@
// GET / - primary app dashboard
exports.getIndex = function(req, res) {
res.render('index/dashboard', { title: 'Hey', message: 'Hello there!' });
};