build: setup docker containers for development

This commit is contained in:
2026-03-12 18:37:56 +01:00
parent c16657f996
commit 83cad4b0ae
33 changed files with 170 additions and 138 deletions

21
app/package.json Normal file
View File

@@ -0,0 +1,21 @@
{
"name": "pathtoglory",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"start": "node --env-file=.env ./index.js",
"db:migrate": "node db/migrate.js"
},
"dependencies": {
"@simplewebauthn/server": "^13.2.3",
"cookie-parser": "~1.4.4",
"debug": "~2.6.9",
"express": "^4.22.1",
"http-errors": "~1.6.3",
"morgan": "^1.10.1",
"pg": "^8.18.0",
"pug": "^2.0.4",
"rb26": "^1.1.0"
}
}