-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevbox.json
More file actions
46 lines (46 loc) · 1.68 KB
/
devbox.json
File metadata and controls
46 lines (46 loc) · 1.68 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
37
38
39
40
41
42
43
44
45
46
{
"$schema": "https://raw.githubusercontent.com/jetify-com/devbox/0.14.2/.schema/devbox.schema.json",
"packages": {
"path:config/devbox/flakes/knope#knope-cli": {
"version": "",
"platforms": ["aarch64-darwin"]
},
"rustup": "latest",
"libiconv": "latest",
"just": "latest",
"process-compose": "latest",
"openssl": {
"version": "latest",
"platforms": ["x86_64-linux"]
},
"pkg-config": {
"version": "latest",
"platforms": ["x86_64-linux"]
},
"lefthook": "latest",
"openssl.dev": "",
"nsc": "latest"
},
"env": {
"WASMCLOUD_OBSERVABILITY_ENABLED": "true",
"OTEL_TRACES_EXPORTER": "otlp",
"WASMCLOUD_VERSION": "1.9.0",
"WASMCLOUD_SECRETS_TOPIC": "wasmcloud.secrets",
"OTEL_EXPORTER_OTLP_ENDPOINT": "http://127.0.0.1:4318",
"WASMCLOUD_OCI_ALLOWED_INSECURE": "localhost:5000",
"PATH": "$HOME/.cargo/bin:$PATH"
},
"shell": {
"init_hook": [
"[ \"$CI\" != \"true\" ] && cargo install wash --locked",
"[ \"$CI\" != \"true\" ] && cargo install cargo-watch --locked",
"cargo fetch",
"lefthook install"
],
"scripts": {
"services": "process-compose -p 8081",
"webapp:schema:build": "cd ./crates/schemas/pipeline && cargo run > ../../../../../webapp/main/static/pipeline.schema.json && cd -",
"webapp:types:build": "cd ./crates/shared/ && cargo test export_bindings && cp -r bindings/* ../../../../webapp/main/src/routes/[workspaceSlug]/pipeline/[pipelineName]/[pipelineVersion=pipeline_version]/builder/types/ && cd -"
}
}
}