using nedb for connections, controllers

This commit is contained in:
Jan Prochazka
2020-01-04 09:41:09 +01:00
parent 800f3eec26
commit cdb66c3733
8 changed files with 182 additions and 4 deletions

17
api/.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,17 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Launch Program",
"skipFiles": [
"<node_internals>/**"
],
"program": "${workspaceFolder}/src/index.js"
}
]
}