Hey folks! We are working with a tap that require...
# troubleshooting
c
Hey folks! We are working with a tap that requires JSON reports to run. However, when these are stored in a directory in my meltano project it require my meltano.yml to reference my local file path. Is there a way/syntax format that can dynamically append the path of wherever the meltano project is run from? My orignal config in meltano.yml:
Copy code
config:
      reports: /Users/connorflynn/meltano_projects/ga-meltano/ga4_reports/sourcemedium_campaign_sessions.json
Example of what I am looking to see in my meltano.yml config:
Copy code
config:
      reports: {meltano_project_path}/ga4_reports/sourcemedium_campaign_sessions.json
p
@connor_flynn try
$MELTANO_PROJECT_ROOT
c
Amazing! Thank you @pat_nadolny