mev-inspect-py/Tiltfile
2021-09-03 09:55:21 -04:00

17 lines
411 B
Plaintext

load('ext://helm_remote', 'helm_remote')
helm_remote("postgresql",
repo_name='bitnami',
repo_url='https://charts.bitnami.com/bitnami',
values=["k8s/postgresql/values_dev.yaml"]
)
docker_build('mev-inspect', '.',
live_update=[
sync('.', '/app'),
run('cd /app && poetry install',
trigger='./pyproject.toml'),
],
)
k8s_yaml("k8s/app.yaml")