studio
Studio command reference
Syntax
toollessdb studio [dbPath]
--port <port> Port to listen on (default: 4000)
--host <host> Host to bind to (default: localhost)Arguments
| Argument | Description |
|---|---|
[dbPath] | Path to database directory (default: ./data) |
Options
| Option | Description | Default |
|---|---|---|
--port <port> | Port to listen on | 4000 |
--host <host> | Host to bind to | localhost |
Directory must exist
Studio requires the database directory to exist before starting. It will not create the ./data
folder automatically. Run your app first or create the directory manually.
Examples
Start studio for current directory:
toollessdb studioDefault Access
Studio will be accessible at http://localhost:4000 by default.
With custom port:
toollessdb studio --port 8080Specify database path:
toollessdb studio ./my-dataBind to all interfaces:
toollessdb studio --host 0.0.0.0 --port 5000Network Access
Binding to 0.0.0.0 will make Studio accessible from any network interface. Use with caution in
production environments.