flow-models/Makefile
Shah Newaz Khan cecced9db1
streamline flow chainhead udf (#128)
* added makefile udf/api integration directives | added api integration / udf macros

* added reamdme comments

---------

Co-authored-by: shah <info@shahnewazkhan.ca>
2023-07-18 13:04:21 -07:00

21 lines
370 B
Makefile

SHELL := /bin/bash
# set default target
DBT_TARGET ?= sbx
dbt-console:
docker-compose run dbt_console
.PHONY: dbt-console
sl-flow-api:
dbt run-operation create_aws_flow_api \
--profile flow \
--target $(DBT_TARGET) \
--profiles-dir ~/.dbt/
udfs:
dbt run-operation create_udf_get_chainhead \
--profile flow \
--target $(DBT_TARGET) \
--profiles-dir ~/.dbt/