Initial content

This commit is contained in:
Adam Freeman
2024-05-29 18:54:49 +01:00
parent 2dbc1a8088
commit 5215a1d919
1944 changed files with 203378 additions and 0 deletions
@@ -0,0 +1,39 @@
{
"http": {
"port": 5000
},
"templates": {
"location": "templates",
"config": {
"layoutsDir": "templates",
"defaultLayout": "main_layout.handlebars",
"partialsDir": "templates"
}
},
"errors": {
"400": "not_found",
"500": "error"
},
"catalog": {
"orm_repo": {
"settings": {
"dialect": "sqlite",
"storage": "catalog.db"
},
"logging": true,
"reset_db": true,
"seed_file": "products.json"
}
},
"sessions": {
"maxAgeHrs": 2,
"reset_db": true,
"orm": {
"settings": {
"dialect": "sqlite",
"storage": "sessions.db"
},
"logging": true
}
}
}