mirror of
https://github.com/enso-org/enso.git
synced 2024-11-26 17:06:48 +03:00
0e20644e47
- Closes https://github.com/enso-org/cloud-v2/issues/478 - Download local project as `.enso-project` archive - Requires latest nightly version of Project Manager - Closes https://github.com/enso-org/cloud-v2/issues/510 - Allow uploading `.enso-project` to local backend - Closes https://github.com/enso-org/cloud-v2/issues/477 - Promote local project to cloud - Currently errors with 500 (when uploading a small bundle) or 413 (when uploading a large bundle). May be fixed soon # Important Notes The "upload project to cloud" context menu action does not currently have an entry in the new context menu, so that will probably need an official design at some point
31 lines
1.4 KiB
YAML
31 lines
1.4 KiB
YAML
# 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"
|
|
|
|
# The configuration object nested inside of the `windowAppScopeName` object containing all
|
|
# startup configuration options. See usages of this variable to learn more about available
|
|
# options.
|
|
windowAppScopeConfigName: "config"
|
|
|
|
# The configuration object nested inside of the `windowAppScopeName` object containing theming
|
|
# utilities and allowing for runtime theme modification.
|
|
windowAppScopeThemeName: "theme"
|
|
|
|
# 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"
|
|
|
|
# The URL to the base path of the HTTP endpoints of the Project Manager.
|
|
projectManagerHttpEndpoint: "http://127.0.0.1:30535"
|
|
|
|
# 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.
|
|
engineVersionSupported: "2023.1.1"
|
|
|
|
# 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.
|
|
languageEditionSupported: "2023.1.1"
|