Links

Run Command

The run command is the command to use when running a project, e.g. python3 {{entry}} (where {{entry}} is a template for the current filename). To add or modify, click the Settings icon in the left sidebar and locate the Run Command section:
Run Command setting
The run command is executed once the build script has completed. It also supports templates.
The run command must be a single executable statement, such as python main.py. A command such as cd src ; python main.py will not return expected results during testing.

Example

Here is an example of a run command for Python:
python3 {{entry}}
This run command simply executes the open file or the file set as the program entry point.