mirror of
https://github.com/alexankitty/Myrient-Search-Engine.git
synced 2026-01-15 16:33:15 -03:00
12 lines
293 B
JavaScript
12 lines
293 B
JavaScript
import getAllFiles from './lib/dirwalk.js'
|
|
import 'dotenv/config'
|
|
import express from 'express'
|
|
var app = express();
|
|
app.set('view engine', 'ejs')
|
|
|
|
app.get('/', function(req, res) {
|
|
res.render('pages/index')
|
|
})
|
|
|
|
app.listen(process.env.PORT)
|
|
console.log(`Listening on ${process.env.PORT}.`) |