forked from github-starred/komodo
83 lines
1.8 KiB
TOML
83 lines
1.8 KiB
TOML
[[build]]
|
|
name = "monitor_core"
|
|
description = "Public monitor core build"
|
|
tags = ["monitor"]
|
|
|
|
[build.config]
|
|
builder_id = "mogh-builder"
|
|
repo = "mbecker20/monitor"
|
|
branch = "main"
|
|
docker_account = "mbecker2020"
|
|
build_path = "."
|
|
dockerfile_path = "bin/core/Dockerfile"
|
|
|
|
[[build]]
|
|
name = "monitor_core_dev"
|
|
description = ""
|
|
tags = ["monitor", "dev"]
|
|
|
|
[build.config]
|
|
builder_id = "mogh-builder"
|
|
repo = "mbecker20/monitor"
|
|
branch = "main"
|
|
docker_account = "mbecker2020"
|
|
build_path = "."
|
|
dockerfile_path = "bin/core/Dockerfile"
|
|
|
|
[[build]]
|
|
name = "monitor_frontend"
|
|
description = "standalone hosted frontend for monitor.mogh.tech"
|
|
tags = ["monitor", "frontend"]
|
|
|
|
[build.config]
|
|
builder_id = "mogh-builder"
|
|
repo = "mbecker20/monitor"
|
|
branch = "main"
|
|
docker_account = "mbecker2020"
|
|
build_path = "."
|
|
dockerfile_path = "frontend/Dockerfile"
|
|
|
|
[[build.config.build_args]]
|
|
variable = "VITE_MONITOR_HOST"
|
|
value = "https://monitor.api.mogh.tech"
|
|
|
|
[[build]]
|
|
name = "monitor_frontend_dev"
|
|
description = "standalone hosted frontend for monitor-dev.mogh.tech"
|
|
tags = ["monitor", "frontend"]
|
|
|
|
[build.config]
|
|
builder_id = "mogh-builder"
|
|
repo = "mbecker20/monitor"
|
|
branch = "main"
|
|
docker_account = "mbecker2020"
|
|
build_path = "."
|
|
dockerfile_path = "frontend/Dockerfile"
|
|
|
|
[[build.config.build_args]]
|
|
variable = "VITE_MONITOR_HOST"
|
|
value = "https://monitor-dev.api.mogh.tech"
|
|
|
|
## BUILDER
|
|
|
|
[[builder]]
|
|
name = "mogh-builder"
|
|
description = ""
|
|
tags = []
|
|
|
|
[builder.config]
|
|
type = "Aws"
|
|
|
|
[builder.config.params]
|
|
region = "us-east-2"
|
|
instance_type = "c5.2xlarge"
|
|
volume_gb = 20
|
|
port = 8120
|
|
ami_id = "ami-0005a05fa63a080ab"
|
|
subnet_id = "subnet-02ae5ad480eacc4bc"
|
|
security_group_ids = ["sg-049d98c819f9ace58", "sg-006c0ca638af8eb44"]
|
|
key_pair_name = "mogh-key"
|
|
assign_public_ip = true
|
|
use_public_ip = false
|
|
github_accounts = []
|
|
docker_accounts = [] |