ameya_agrawal
06/29/2023, 8:20 PMmeltano install extractor --clean tap-facebook
every time I make a change in order to see the changes in action (when I run the tap). I was wondering if there is a way to change this temporarily so that tap-facebook uses local tap code rather than what it finds at the pip_url
in meltano.yml
. Any support would be appreciated!user
06/29/2023, 8:33 PMuser
06/29/2023, 8:34 PMameya_agrawal
06/29/2023, 9:09 PMmeltano.yml
? So let’s say in my project folder p1
, I have two folders: f1
and f2
. f1
contains meltano.yml
. f2
contains my local version of tap-facebook
, cloned from Github. I tried setting pip_url to -e .
and also -e ~/Desktop/p1/f2/tap-facebook
and also -e ../f2/tap-facebook
, but none of these had any impact on the execution results. It still seems to be running the one from the last commit in Github.ameya_agrawal
06/29/2023, 9:10 PMuser
06/29/2023, 9:28 PM--clean
to be safe in order for it to get picked upameya_agrawal
06/29/2023, 9:35 PM-e ../f2/tap-facebook
worked for me. Thank you for your help.