ToollessToolless

studio

Studio command reference

Syntax

studio.sh
toollessdb studio [dbPath]
  --port <port>        Port to listen on (default: 4000)
  --host <host>        Host to bind to (default: localhost)

Arguments

ArgumentDescription
[dbPath]Path to database directory (default: ./data)

Options

OptionDescriptionDefault
--port <port>Port to listen on4000
--host <host>Host to bind tolocalhost

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:

studio.sh
toollessdb studio

Default Access

Studio will be accessible at http://localhost:4000 by default.

With custom port:

studio.sh
toollessdb studio --port 8080

Specify database path:

studio.sh
toollessdb studio ./my-data

Bind to all interfaces:

studio.sh
toollessdb studio --host 0.0.0.0 --port 5000

Network Access

Binding to 0.0.0.0 will make Studio accessible from any network interface. Use with caution in production environments.

On this page