-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcider.config
More file actions
36 lines (35 loc) · 2.21 KB
/
cider.config
File metadata and controls
36 lines (35 loc) · 2.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
// Configuration file for the Dyalog project manager Cider.
// Relative paths refer to the folder a project's config file stems from.
// Use ]Cider.OpenProject to open a project that carries a file "cider.config".
// For a detailed documentation see Cider's User Guide
// +------------------------------------------------------------------------+
// | Do not change this file - it might well be replaced with a new version |
// +------------------------------------------------------------------------+
// Version 0.5.0
{
CIDER: {
cider_version: "0.48.0", // The version of Cider the file was created/modified with; set by Cider
dependencies: { // Folder(s) with installed Tatin packages the project eventually depends on
nuget: "", // Accepts <folder> or "<folder>=<target_namespace>"; typically something like "tatin-dependencies"
tatin: "deps", // Like "tatin" (typically something like "nuget-dependencies")
},
dependencies_dev: { // Folder(s) with installed Tatin packages the project depends on for development and testing
tatin: "", // Same as "dependencies" but for development stuff (typically "tatin-dependencies_dev")
//nuget NOT allowed in dependencies_dev (yet?!)
},
distributionFolder: "Dist", // Folder used to put stuff for publishing, like a package ZIP or an installer EXE etc.
init: "", // Project fn; executed when everything else is done. Relative to root of the project.
make: "", // Expression that produces a new version of the project. Relative to root of the project.
parent: "#",
projectSpace: "Selenium", // Where the project is going to live; overwrite with ]Cider.OpenProject <path> -target=#.foo
project_url: "", // For example a URL pointing to a GitHub project; information only
source: "APLSource",
tests: "", // Expression that executes the test cases of the project (if any). Relative to root of the project.
},
SYSVARS: { // You may add other ⎕-variables here like, say, ⎕CT as "ct" etc.
io: 1,
ml: 1,
},
USER: {
},
}