daml/release/sdk-config.yaml.tmpl
A. F. Mota 128b8bed54
Add daml clean command (#1237)
* Add daml clean command

* Show what is removed during daml clean.

* Dont relativize
2019-05-20 13:11:35 +02:00

49 lines
1.3 KiB
Cheetah

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: init
path: daml-helper/daml-helper
desc: "Configure a folder as a DAML project"
args: ["init"]
- name: build
path: damlc/da-hs-damlc-app
args: ["build"]
desc: "Build the current DAML project into a DAR file"
- name: test
path: damlc/da-hs-damlc-app
args: ["test"]
desc: "Run the scenarios in the given DAML file and all dependencies"
- name: start
path: daml-helper/daml-helper
args: ["start"]
desc: "Launch Sandbox and Navigator for current DAML project"
- name: clean
path: damlc/da-hs-damlc-app
args: ["clean"]
desc: "Delete build artifacts from project folder"
- name: damlc
path: damlc/da-hs-damlc-app
desc: "Run the DAML compiler"
- name: sandbox
path: daml-helper/daml-helper
desc: "Launch the Sandbox"
args: ["run-jar", "sandbox/sandbox.jar"]
- name: navigator
path: daml-helper/daml-helper
desc: "Launch the Navigator"
args: ["run-jar", "navigator/navigator.jar"]
- name: extractor
path: daml-helper/daml-helper
desc: "Launch the Extractor"
args: ["run-jar", "extractor/extractor.jar"]
- name: ide
path: damlc/da-hs-damlc-app
args: ["lax", "ide"]