Skip to main content

Getting started

RemotiveStudio is started from the command line by pointing it at a directory which is used as your workspace.

Start RemotiveStudio

remotive studio <path>

For example, to open the current directory as your workspace:

remotive studio .

Or any directory:

remotive studio ~/repos/remotivelabs-topology-examples

Once RemotiveStudio is running in your CLI, you can navigate to the provided endpoint in any web browser to open the graphical interface.

Don't open the browser automatically

The browser is opened automatically on launch by default. Add the --no-browser flag to not open RemotiveStudio in a browser automatically on launch:

remotive studio . --no-browser

Custom port

RemotiveStudio uses port 50051 by default. You can override this with the --port flag. E.g. to use port 12345, you would run:

remotive studio . --port 12345

You can also use the --auto flag to use a free port assigned by the OS:

remotive studio . --port auto

Additional flags

This covers the most common flags, see the full manual for all available flags.