mev-inspect-py/Tiltfile
2021-09-09 07:49:29 -06:00

17 lines
440 B
Plaintext

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