Hi there,
I'm a newb to node red, but I'm an IT professional that has a background in LAMPP servers and a full stack PHP developer that has been developing things since 2004 in PHP, so I'm not sure I qualify as a newb in general.
Here's what I want to do with node-red, that I think should be possible but I just need a nudge in the right direction:
Say every 5 minutes, I want to query a Postgres database for new records in a specific table that meet specific criteria, and then manipulate and insert that data into a MariaDB (MySQL) database in a destination table.
I can handle the technical details of the above without any help. What I'm less certain about is how to call this flow once it has been built and deployed on my node-red dev server. Ideally I would think this would be a cron job like this:
*/5 * * * * * /home/devguy/some-bash-script-or-nodered-bin /path/to/flow/process/or/call/by/flow/name
Is this possible, or is there an alternate way to do this?
UPDATE: And of course, after I thought I had searched on all the things before posting, I find an answer, which is:
Just in case someone else needs it.