Inspector
The inspector
is an external standalone application that provides a simple
HTMX-based web ui.
Download standalone executable from here https://github.com/tc-functors/inspector/releases
By default, inspector
uses SurrealDB in-memory mode.
tc-inspector --port 8080
=> http://localhost:8080
Alternatively, we can run SurrealDB in network mode and connect to it. Follow instructions to install SurrealDB - https://surrealdb.com/install
surreal start --user root --pass secret
Add following to tc-inspector.yml file.
store_mode: Networkaddress: 127.0.0.1:8000user: rootpassword: secret
Run tc inspector with path to tc-inspector.yml file
cd tc/examplestc-inspector --port 8080 --config tc-inspector.yml