clean up old nodejs stuff that was never used

This commit is contained in:
biglyderv 2024-12-28 02:08:13 -05:00
parent b9e349a0c6
commit 68d4629185
14 changed files with 19 additions and 1010 deletions

View file

@ -1,16 +0,0 @@
import express from "express";
const app = express()
const port = process.env.PORT|| 3000;
app.use('/static', express.static('./static'),)
app.set('view engine', 'ejs');
app.set('views', './views');
app.get('/', (req, res) => {
res.render('index');
})
app.listen(port, () => {
console.log(`App listening on port ${port}`)
})