daml/release/sdk-config.yaml.tmpl
Bernhard Elsner c496e2bf05
Relabel "Experimental" to "Early Access" and reorganise pages (#5411)
CHANGELOG_BEGIN

- Move daml2ts, bindings-ts and JSON API out of experimental section in docs
- Rename Experimental to Early Access in docs and assistant
- Reorganise the docs a little bit to de-emphasise the Ledger API

CHANGELOG_END
2020-04-03 16:29:22 +02:00

101 lines
3.3 KiB
Cheetah

version: __VERSION__
commands:
- name: studio
path: daml-helper/daml-helper
desc: "Launch DAML Studio"
args: ["studio"]
completion: true
- name: new
path: daml-helper/daml-helper
desc: "Create a new DAML project"
args: ["new"]
completion: true
- name: create-daml-app
path: daml-helper/daml-helper
desc: "Create a new DAML project based on create-daml-app"
args: ["create-daml-app"]
completion: true
- name: init
path: daml-helper/daml-helper
desc: "Configure a folder as a DAML project"
args: ["init"]
completion: true
- name: build
path: damlc/damlc
args: ["build", "--project-check"]
desc: "Build the DAML project into a DAR file"
completion: true
- name: test
path: damlc/damlc
args: ["test"]
desc: "Run the scenarios in the given DAML file and all dependencies"
completion: true
- name: start
path: daml-helper/daml-helper
args: ["start"]
desc: "Launch Sandbox and Navigator for current DAML project"
completion: true
- name: clean
path: damlc/damlc
args: ["clean", "--project-check"]
desc: "Delete build artifacts from project folder"
completion: true
- name: damlc
path: damlc/damlc
desc: "Run the DAML compiler"
completion: true
- name: sandbox
path: daml-helper/daml-helper
desc: "Launch Sandbox"
args: ["run-jar", "--logback-config=daml-sdk/sandbox-logback.xml", "daml-sdk/daml-sdk.jar", "sandbox"]
- name: sandbox-classic
path: daml-helper/daml-helper
desc: "Launch Sandbox Classic (the default Sandbox implementation for SDK <= 0.13.55)"
args: ["run-jar", "--logback-config=daml-sdk/sandbox-logback.xml", "daml-sdk/daml-sdk.jar", "sandbox-classic"]
- name: navigator
path: daml-helper/daml-helper
desc: "Launch the Navigator"
args: ["run-jar", "--logback-config=daml-sdk/navigator-logback.xml", "daml-sdk/daml-sdk.jar", "navigator"]
- name: extractor
path: daml-helper/daml-helper
desc: "Launch the Extractor (early access)"
args: ["run-jar", "--logback-config=daml-sdk/extractor-logback.xml", "daml-sdk/daml-sdk.jar", "extractor"]
- name: ledger
path: daml-helper/daml-helper
desc: "Interact with a DAML ledger"
args: ["ledger"]
completion: true
- name: codegen
path: daml-helper/daml-helper
desc: "Run a language bindings code generation tool"
args: ["codegen"]
completion: true
- name: deploy
path: daml-helper/daml-helper
desc: "Deploy DAML project to a ledger"
args: ["deploy"]
completion: true
- name: ide
path: damlc/damlc
args: ["lax", "ide"]
- name: json-api
path: daml-helper/daml-helper
desc: "Launch the HTTP JSON API"
args: ["run-jar", "--logback-config=daml-sdk/json-api-logback.xml", "daml-sdk/daml-sdk.jar", "json-api"]
- name: trigger
path: daml-helper/daml-helper
args: ["run-jar", "--logback-config=daml-sdk/trigger-logback.xml", "daml-sdk/daml-sdk.jar", "trigger"]
desc: "Run a DAML trigger (early access)"
- name: script
path: daml-helper/daml-helper
args: ["run-jar", "--logback-config=daml-sdk/script-logback.xml", "daml-sdk/daml-sdk.jar", "script"]
desc: "Run a DAML script"
- name: test-script
path: daml-helper/daml-helper
args: ["run-jar", "--logback-config=daml-sdk/test-script-logback.xml", "daml-sdk/daml-sdk.jar", "test-script"]
desc: "Run all DAML script tests in a DAR"
- name: repl
path: damlc/damlc
args: ["repl"]
desc: "Launch the DAML REPL (early access)"