forked from cdklabs/cdk-cicd-wrapper
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevbox.json
More file actions
33 lines (33 loc) · 802 Bytes
/
Copy pathdevbox.json
File metadata and controls
33 lines (33 loc) · 802 Bytes
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
{
"$schema": "https://raw.githubusercontent.com/jetpack-io/devbox/0.10.3/.schema/devbox.schema.json",
"packages": [
"git@2.42.0",
"git-remote-codecommit@1.15.1",
"jq@1.7.1",
"go-task@3.39.2",
"python@3.12.2",
"pipenv@2023.2.4",
"nodejs@18.19.1",
"twine@latest"
],
"shell": {
"init_hook": [
"echo 'Welcome to CDKLabs CDK CI/CD Wrapper'",
"echo 'You can run the following commands:'",
". $VENV_DIR/bin/activate",
"task -l",
"echo 'For more information, see Readme.md'",
"task init"
],
"scripts": {
"test": [
"echo \"Error: no test specified\" && exit 1"
]
}
},
"env": {
"VENV_DIR": ".venv",
"PIPENV_VERBOSITY": "-1",
"DEVBOX_COREPACK_ENABLED": "1"
}
}