Application Mode configuration
The *.app
file defines the configuration for Application Mode. This file can be named anything as long as it ends with .app
and is stored in the directory pointed to by -Ddeephaven.application.dir
. See the example below.
type=script
scriptType=python
enabled=true
id=hello.world
name=Hello World!
file_0=helloWorld.py
Parameter | Type | Description |
---|---|---|
type | String | The type of script to run. This can be one of |
scriptType | String | The language of the script. One of |
enabled | Boolean | Boolean value to indicate whether or not to run the scripts.
|
id | String | An identifier used when API clients connect to this server Application Mode instance. |
name | String | A description that is displayed to users when mentioning this application. |
file_<n> | String | A list of scripts to run. |