daml/release/sdk-config.yaml.tmpl

72 lines
2.0 KiB
Cheetah
Raw Normal View History

2019-04-04 11:33:38 +03:00
version: __VERSION__
commands:
- name: studio
path: daml-helper/daml-helper
desc: "Launch DAML Studio"
args: ["studio"]
- name: new
path: daml-helper/daml-helper
desc: "Create a new DAML project"
args: ["new"]
- name: migrate
path: daml-helper/daml-helper
args: ["migrate"]
- name: init
path: daml-helper/daml-helper
desc: "Configure a folder as a DAML project"
args: ["init"]
- name: build
path: damlc/damlc
args: ["build", "--project-check"]
desc: "Build the DAML project into a DAR file"
- name: test
path: damlc/damlc
args: ["test"]
desc: "Run the scenarios in the given DAML file and all dependencies"
- name: start
2019-04-04 11:33:38 +03:00
path: daml-helper/daml-helper
args: ["start"]
desc: "Launch Sandbox and Navigator for current DAML project"
- name: clean
path: damlc/damlc
args: ["clean", "--project-check"]
desc: "Delete build artifacts from project folder"
- name: damlc
path: damlc/damlc
desc: "Run the DAML compiler"
2019-04-04 11:33:38 +03:00
- name: sandbox
path: daml-helper/daml-helper
desc: "Launch the Sandbox"
args: ["run-jar", "sandbox/sandbox.jar"]
2019-04-04 11:33:38 +03:00
- name: navigator
path: daml-helper/daml-helper
desc: "Launch the Navigator"
args: ["run-jar", "navigator/navigator.jar"]
2019-04-04 11:33:38 +03:00
- name: extractor
path: daml-helper/daml-helper
desc: "Launch the Extractor"
args: ["run-jar", "extractor/extractor.jar"]
- name: ledger
path: daml-helper/daml-helper
desc: "Interact with a DAML ledger (experimental)"
args: ["ledger"]
- name: deploy
path: daml-helper/daml-helper
desc: "Deploy DAML project to a ledger (experimental)"
args: ["deploy"]
- name: ide
path: damlc/damlc
args: ["lax", "ide"]
- name: json-api
path: daml-helper/daml-helper
desc: "Launch the HTTP JSON API (experimental)"
args: ["run-jar", "--logback-config=json-api/json-api-logback.xml", "json-api/json-api.jar"]
- name: codegen
path: daml-helper/daml-helper
desc: "Run the DAML codegen"
args: ["run-jar", "codegen/codegen.jar"]
- name: trigger
path: daml-helper/daml-helper
args: ["run-jar", "daml-trigger/daml-trigger.jar"]
desc: "Run a DAML trigger (experimental)"