server initial commit

This commit is contained in:
Ari Yeger
2025-07-15 13:34:30 -04:00
parent cf3f4270f9
commit 5fc2a1eb24
11 changed files with 1694 additions and 0 deletions

9
server/routes/index.js Normal file
View File

@ -0,0 +1,9 @@
import express from 'express';
const router = express.Router();
/* GET home page. */
router.get('/', function(req, res, next) {
res.render('index', { title: 'Express' });
});
module.exports = router;