Hi guys! Is there a way to pass config parameters ...
# best-practices
j
Hi guys! Is there a way to pass config parameters to the
meltano elt
call? like
meltano elt tap-custom --config-start-date=2021-11-01
?
v
few ways, one is with
meltano config
( another for Run Time would be using environment variables. In this case something like
export TAP_CUSTOM_START_DATE
https://docs.meltano.com/guide/configuration#environment-variables https://docs.meltano.com/guide/configuration#configuration-layers is probably the best explanation of what's going on
e
+1 to Derek's suggestion of environment variables
j
thanks!!!!