20 lines
647 B
TOML
20 lines
647 B
TOML
[package]
|
|
name = "example-compose-java-react"
|
|
edition = "2024"
|
|
version.workspace = true
|
|
readme.workspace = true
|
|
license.workspace = true
|
|
description = "Deploy a Java+React app to Kubernetes by importing its docker-compose. The whole example is one main.rs; the machinery lives in harmony_app. See ADR-026."
|
|
|
|
[[bin]]
|
|
name = "compose-deploy"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
harmony_app = { path = "../../harmony_app" }
|
|
harmony_cli = { path = "../../harmony_cli" }
|
|
harmony_macros = { path = "../../harmony_macros" }
|
|
harmony_types = { path = "../../harmony_types" }
|
|
anyhow = { workspace = true }
|
|
tokio = { workspace = true, features = ["full"] }
|