feat: Start server using filestorage

This commit is contained in:
Matthieu Bosquet 2021-01-12 09:37:32 +00:00 committed by Joachim Van Herwegen
parent 107fbad0e0
commit 41899ca9cd
2 changed files with 2 additions and 0 deletions

1
.gitignore vendored
View File

@ -1,4 +1,5 @@
coverage coverage
data
dist dist
docs docs
node_modules node_modules

View File

@ -51,6 +51,7 @@
"lint": "eslint . --cache --ignore-path .gitignore", "lint": "eslint . --cache --ignore-path .gitignore",
"prepare": "npm run build", "prepare": "npm run build",
"start": "node ./bin/server.js", "start": "node ./bin/server.js",
"start:file": "node ./bin/server.js -c config/config-file.json -f ./data",
"test": "npm run test:ts && npm run jest", "test": "npm run test:ts && npm run jest",
"test:deploy": "test/deploy/validate-package.sh", "test:deploy": "test/deploy/validate-package.sh",
"test:ts": "tsc -p test --noEmit", "test:ts": "tsc -p test --noEmit",