Files
komodo/runfile.toml

77 lines
2.3 KiB
TOML

[dev-frontend]
description = "starts the frontend in dev mode"
path = "frontend"
cmd = "yarn dev"
[dev-core]
description = "runs core --release pointing to .dev/core.config.toml"
cmd = "KOMODO_CONFIG_PATH=.dev/core.config.toml cargo run -p komodo_core --release"
[dev-periphery]
description = "runs periphery --release pointing to .dev/periphery.config.toml"
cmd = "PERIPHERY_CONFIG_PATH=.dev/periphery.config.toml cargo run -p komodo_periphery --release"
[yarn-install]
description = "downloads latest javacript dependencies for client and frontend"
cmd = """
cd frontend && yarn && \
cd ../client/core/ts && yarn
"""
[gen-client]
description = "generates typescript types and build the ts client"
after = "yarn-install"
cmd = """
node ./client/core/ts/generate_types.mjs && \
cd ./client/core/ts && yarn build && \
cp -r dist/. ../../../frontend/public/client/."""
[link-client]
description = "yarn links the ts client to the frontend"
after = "gen-client"
cmd = """
cd ./client/core/ts && yarn link && \
cd ../../../frontend && yarn link komodo_client && yarn
"""
[build-frontend]
description = "generates fresh ts client and builds the frontend"
path = "frontend"
cmd = "yarn build"
after = "gen-client"
[publish-typescript]
path = "client/core/ts"
cmd = "npm publish"
[dev-compose]
description = "deploys dev.compose.yaml"
cmd = """
docker compose -p komodo-dev -f dev.compose.yaml down --remove-orphans && \
docker compose -p komodo-dev -f dev.compose.yaml up -d"""
[dev-compose-exposed]
description = "deploys dev.compose.yaml with exposed port and non-ssl periphery"
cmd = """
docker compose -p komodo-dev down --remove-orphans && \
docker compose -p komodo-dev -f dev.compose.yaml -f expose.compose.yaml up -d"""
[dev-compose-build]
description = "builds and deploys dev.compose.yaml"
cmd = """
docker compose -p komodo-dev -f dev.compose.yaml build"""
[dev-docsite]
description = "starts the documentation site (https://komo.do) in dev mode"
path = "docsite"
cmd = "yarn start"
[deploy-docsite]
description = "deploys the documentation site (https://komo.do) to github pages"
path = "docsite"
cmd = "yarn deploy"
[dev-rustdoc]
description = "starts the rustdoc site (https://docs.rs/komodo_client/latest/komodo_client/) in dev mode"
cmd = "cargo watch -s 'cargo doc --no-deps -p komodo_client' & http --quiet target/doc"