2019-04-04 11:33:38 +03:00
|
|
|
version: __VERSION__
|
|
|
|
commands:
|
2019-04-29 11:14:51 +03:00
|
|
|
- name: studio
|
|
|
|
path: daml-helper/daml-helper
|
|
|
|
desc: "Launch DAML Studio"
|
|
|
|
args: ["studio"]
|
2020-02-06 17:16:12 +03:00
|
|
|
completion: true
|
2019-04-29 11:14:51 +03:00
|
|
|
- name: new
|
|
|
|
path: daml-helper/daml-helper
|
|
|
|
desc: "Create a new DAML project"
|
|
|
|
args: ["new"]
|
2020-02-06 17:16:12 +03:00
|
|
|
completion: true
|
2020-03-24 20:29:40 +03:00
|
|
|
- name: create-daml-app
|
|
|
|
path: daml-helper/daml-helper
|
2020-04-03 17:29:22 +03:00
|
|
|
desc: "Create a new DAML project based on create-daml-app"
|
2020-03-24 20:29:40 +03:00
|
|
|
args: ["create-daml-app"]
|
|
|
|
completion: true
|
2019-05-10 19:32:41 +03:00
|
|
|
- name: init
|
|
|
|
path: daml-helper/daml-helper
|
|
|
|
desc: "Configure a folder as a DAML project"
|
|
|
|
args: ["init"]
|
2020-02-06 17:16:12 +03:00
|
|
|
completion: true
|
2019-04-15 19:12:04 +03:00
|
|
|
- name: build
|
2019-07-08 12:40:48 +03:00
|
|
|
path: damlc/damlc
|
2019-05-21 13:39:08 +03:00
|
|
|
args: ["build", "--project-check"]
|
2019-07-17 16:09:55 +03:00
|
|
|
desc: "Build the DAML project into a DAR file"
|
2020-02-06 17:16:12 +03:00
|
|
|
completion: true
|
2019-05-20 14:11:35 +03:00
|
|
|
- name: test
|
2019-07-08 12:40:48 +03:00
|
|
|
path: damlc/damlc
|
2019-05-28 16:36:42 +03:00
|
|
|
args: ["test"]
|
2019-05-20 14:11:35 +03:00
|
|
|
desc: "Run the scenarios in the given DAML file and all dependencies"
|
2020-02-06 17:16:12 +03:00
|
|
|
completion: true
|
2019-04-29 11:14:51 +03:00
|
|
|
- name: start
|
2019-04-04 11:33:38 +03:00
|
|
|
path: daml-helper/daml-helper
|
2019-04-29 11:14:51 +03:00
|
|
|
args: ["start"]
|
|
|
|
desc: "Launch Sandbox and Navigator for current DAML project"
|
2020-02-06 17:16:12 +03:00
|
|
|
completion: true
|
2019-05-20 14:11:35 +03:00
|
|
|
- name: clean
|
2019-07-08 12:40:48 +03:00
|
|
|
path: damlc/damlc
|
2019-05-21 13:39:08 +03:00
|
|
|
args: ["clean", "--project-check"]
|
2019-05-20 14:11:35 +03:00
|
|
|
desc: "Delete build artifacts from project folder"
|
2020-02-06 17:16:12 +03:00
|
|
|
completion: true
|
2019-04-29 11:14:51 +03:00
|
|
|
- name: damlc
|
2019-07-08 12:40:48 +03:00
|
|
|
path: damlc/damlc
|
2019-04-29 11:14:51 +03:00
|
|
|
desc: "Run the DAML compiler"
|
2020-02-06 17:16:12 +03:00
|
|
|
completion: true
|
2019-04-04 11:33:38 +03:00
|
|
|
- name: sandbox
|
|
|
|
path: daml-helper/daml-helper
|
2020-03-31 15:50:21 +03:00
|
|
|
desc: "Launch Sandbox"
|
2019-12-12 16:02:23 +03:00
|
|
|
args: ["run-jar", "--logback-config=daml-sdk/sandbox-logback.xml", "daml-sdk/daml-sdk.jar", "sandbox"]
|
2020-03-31 15:50:21 +03:00
|
|
|
- name: sandbox-classic
|
2020-03-18 11:25:08 +03:00
|
|
|
path: daml-helper/daml-helper
|
2020-03-31 15:50:21 +03:00
|
|
|
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"]
|
2019-04-04 11:33:38 +03:00
|
|
|
- name: navigator
|
|
|
|
path: daml-helper/daml-helper
|
2019-04-29 11:14:51 +03:00
|
|
|
desc: "Launch the Navigator"
|
2019-12-12 16:02:23 +03:00
|
|
|
args: ["run-jar", "--logback-config=daml-sdk/navigator-logback.xml", "daml-sdk/daml-sdk.jar", "navigator"]
|
2019-04-04 11:33:38 +03:00
|
|
|
- name: extractor
|
|
|
|
path: daml-helper/daml-helper
|
2020-04-03 17:29:22 +03:00
|
|
|
desc: "Launch the Extractor (early access)"
|
2019-12-12 16:02:23 +03:00
|
|
|
args: ["run-jar", "--logback-config=daml-sdk/extractor-logback.xml", "daml-sdk/daml-sdk.jar", "extractor"]
|
2019-08-06 14:41:43 +03:00
|
|
|
- name: ledger
|
|
|
|
path: daml-helper/daml-helper
|
2020-04-03 17:29:22 +03:00
|
|
|
desc: "Interact with a DAML ledger"
|
2019-08-06 14:41:43 +03:00
|
|
|
args: ["ledger"]
|
2020-02-06 17:16:12 +03:00
|
|
|
completion: true
|
2020-01-29 01:03:54 +03:00
|
|
|
- name: codegen
|
|
|
|
path: daml-helper/daml-helper
|
|
|
|
desc: "Run a language bindings code generation tool"
|
|
|
|
args: ["codegen"]
|
2020-02-06 17:16:12 +03:00
|
|
|
completion: true
|
2019-08-06 14:41:43 +03:00
|
|
|
- name: deploy
|
|
|
|
path: daml-helper/daml-helper
|
2020-04-03 17:29:22 +03:00
|
|
|
desc: "Deploy DAML project to a ledger"
|
2019-08-06 14:41:43 +03:00
|
|
|
args: ["deploy"]
|
2020-02-06 17:16:12 +03:00
|
|
|
completion: true
|
2019-04-29 11:14:51 +03:00
|
|
|
- name: ide
|
2019-07-08 12:40:48 +03:00
|
|
|
path: damlc/damlc
|
2019-04-29 11:14:51 +03:00
|
|
|
args: ["lax", "ide"]
|
2019-09-06 16:48:15 +03:00
|
|
|
- name: json-api
|
|
|
|
path: daml-helper/daml-helper
|
2020-04-03 17:29:22 +03:00
|
|
|
desc: "Launch the HTTP JSON API"
|
2019-11-29 16:26:47 +03:00
|
|
|
args: ["run-jar", "--logback-config=daml-sdk/json-api-logback.xml", "daml-sdk/daml-sdk.jar", "json-api"]
|
2019-09-30 12:52:20 +03:00
|
|
|
- name: trigger
|
|
|
|
path: daml-helper/daml-helper
|
2019-12-12 16:02:23 +03:00
|
|
|
args: ["run-jar", "--logback-config=daml-sdk/trigger-logback.xml", "daml-sdk/daml-sdk.jar", "trigger"]
|
2020-04-03 17:29:22 +03:00
|
|
|
desc: "Run a DAML trigger (early access)"
|
2019-11-19 20:19:57 +03:00
|
|
|
- name: script
|
|
|
|
path: daml-helper/daml-helper
|
2019-12-12 16:02:23 +03:00
|
|
|
args: ["run-jar", "--logback-config=daml-sdk/script-logback.xml", "daml-sdk/daml-sdk.jar", "script"]
|
2020-03-10 14:26:46 +03:00
|
|
|
desc: "Run a DAML script"
|
2020-01-03 17:01:36 +03:00
|
|
|
- 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"]
|
2020-03-10 14:26:46 +03:00
|
|
|
desc: "Run all DAML script tests in a DAR"
|
2020-02-24 13:06:27 +03:00
|
|
|
- name: repl
|
|
|
|
path: damlc/damlc
|
|
|
|
args: ["repl"]
|
2020-04-03 17:29:22 +03:00
|
|
|
desc: "Launch the DAML REPL (early access)"
|