Requirement: NodeJS 14
npm install --no-optional
npm start
http://localhost:8000
administrator
/administrator
Tips:
sqlite3
on Windows, run npm i -g --production windows-build-tools
and retry. You may need to upgrade NodeJS to a recent version.config.js
to set up a PostgreSQL database.See the wiki for additional documentation.
Put this in .vscode/launch.json
:
{
"version": "0.2.0",
"configurations": [
{
"name": "Debug Alakajam!",
"type": "node",
"request": "launch",
"args": ["${workspaceFolder}\\server\\index.ts"],
"runtimeArgs": ["--nolazy", "-r", "ts-node/register/transpile-only", "-r", "tsconfig-paths/register"],
"sourceMaps": true,
"cwd": "${workspaceRoot}",
"protocol": "inspector",
"outputCapture": "std"
}
]
}
data/
folder.drop schema public cascade; create schema public;
).Run npm install
without the --no-optional
flag to try and set up the sharp
dependency. If it fails to install (especially on Windows), follow the instructions to install the sharp dependencies, then try npm install
again.
Run only partial tests by appending the required file as an argument. For instance:
npm run test:unit -- user.service