Please enable JavaScript.
Coggle requires JavaScript to display documents.
LeCV - Coggle Diagram
LeCV
Operations
API
-
/configure
-
permissions: Table
Format: ["me": ["start": TF, "stop": TF, "read": TF, "write": TF], "group": [<etc>], "all", [<etc>]]
-
-
<name>/start
-
Arguments
-
force: Bool - If false, will not run if an instance is already running.
-
-
<name>/delete
Deletes an operation, and stops it if running.
-
-
Datastores
API
-
<name>/set
Sets a key to a value, creates a new key if not present and overwites the old value
-
-
-
<name>/list
Lists all keys and Values in the table, With an optional filter for keys.
-
-
-
/configure
Configures a DS
Arguments
permissions: Table
Format: ["me": ["get": TF, "set": TF], "group": [<etc>], "all", [<etc>]]
-
DB Model
-
ds
Table: [Key: String, Value: Any]
-
Node
On connect
- Node connects and logs in with user credentials
- New database entry for it is created
-
-
-