2020-12-24 07:38:01 +03:00
|
|
|
# The name of an object created in the global window scope. This object will contain functions
|
|
|
|
# to control the IDE, like the `main` function, and also the configuration object.
|
|
|
|
windowAppScopeName: "enso"
|
|
|
|
|
2021-03-30 17:16:46 +03:00
|
|
|
# The configuration object nested inside of the `windowAppScopeName` object containing all
|
2020-12-24 07:38:01 +03:00
|
|
|
# startup configuration options. See usages of this variable to learn more about available
|
|
|
|
# options.
|
|
|
|
windowAppScopeConfigName: "config"
|
2021-03-30 17:16:46 +03:00
|
|
|
|
|
|
|
# The configuration object nested inside of the `windowAppScopeName` object containing theming
|
|
|
|
# utilities and allowing for runtime theme modification.
|
|
|
|
windowAppScopeThemeName: "theme"
|
2021-11-16 12:04:56 +03:00
|
|
|
|
2023-05-02 20:48:07 +03:00
|
|
|
# The URL to the JSON-RPC endpoint to the Project Manager.
|
|
|
|
# This MUST be kept in sync with the corresponding value in `app/gui/src/constants.rs`.
|
|
|
|
projectManagerEndpoint: "ws://127.0.0.1:30535"
|
|
|
|
|
2023-08-09 12:30:40 +03:00
|
|
|
# The URL to the base path of the HTTP endpoints of the Project Manager.
|
|
|
|
projectManagerHttpEndpoint: "http://127.0.0.1:30535"
|
|
|
|
|
2021-11-16 12:04:56 +03:00
|
|
|
# TODO [ao] add description here.
|
|
|
|
minimumSupportedVersion": "2.0.0-alpha.6"
|
|
|
|
|
|
|
|
# The minimum engine version supported by the application. The projects opened with the older versions
|
|
|
|
# will have the "Unsupported engine version" message displayed.
|
2023-05-08 17:13:53 +03:00
|
|
|
engineVersionSupported: "2023.1.1"
|
2021-11-16 12:04:56 +03:00
|
|
|
|
|
|
|
# The minimum language edition supported by the application. It will be displayed as edition user
|
|
|
|
# should put in their package.yaml file to have project compatible with the IDE.
|
2023-05-08 17:13:53 +03:00
|
|
|
languageEditionSupported: "2023.1.1"
|