forked from mbecker20/komodo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
runfile.toml
43 lines (34 loc) · 1.04 KB
/
runfile.toml
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
[gen-ts-types]
description = "generates typescript types for the ts client"
path = "."
cmd = "node ./client/core/ts/generate_types.mjs"
[build-ts-client]
path = "client/core/ts"
cmd = "yarn build"
[start-frontend]
path = "frontend"
cmd = "yarn dev"
[build-frontend]
path = "frontend"
cmd = "yarn build"
[test-compose]
description = "deploys test.compose.yaml"
cmd = """
docker compose -f test.compose.yaml down --remove-orphans && \
docker compose -f test.compose.yaml up -d"""
[test-compose-build]
description = "builds and deploys test.compose.yaml"
cmd = """
docker compose -f test.compose.yaml down --remove-orphans && \
docker compose -f test.compose.yaml up -d --build"""
[test-core]
description = "runs core --release pointing to test.core.config.toml"
cmd = "KOMODO_CONFIG_PATH=test.core.config.toml cargo run -p komodo_core --release"
[docsite-start]
path = "docsite"
cmd = "yarn start"
[docsite-deploy]
path = "docsite"
cmd = "yarn deploy"
[rustdoc-server]
cmd = "cargo watch -s 'cargo doc --no-deps -p komodo_client' & http --quiet target/doc"