Removed projects; added tests

This commit is contained in:
2023-12-02 23:41:04 -05:00
parent 286219c5ea
commit 75552eccee
16 changed files with 209 additions and 146 deletions

View File

@ -28,6 +28,10 @@ app.use(bodyParser.urlencoded({ extended: true }));
// enable the Twig template engine
app.set('view engine', 'twig');
app.set('twig options', {
allowAsync: true,
strict_variables: false
});
// enable serving static files
app.use(express.static('public'));