apify / actor-templates

This project is the :house: home of Apify actor template projects to help users quickly get started.
https://apify.com/
25 stars 15 forks source link

Templates have Input schema but don't use input at all #114

Closed metalwarrior665 closed 1 year ago

metalwarrior665 commented 1 year ago

This is especially confusing on the platform where you can change the input but it doesn't affect the run.

Not sure if we want to force filling the input since users would need to add it locally but maybe we can do something like

const { startUrls } = await Apify.getInput() || { startUrls: ['https://apify.com'] };

But actually if you create actor with templates, it already does create the storage + INPUT, right?

fnesveda commented 1 year ago

@jbartadev This was on our team for some reason, but I guess you're mostly solving this with your template updates, right?

jbartadev commented 1 year ago

@fnesveda yes, we're dealing with this with the template and CLI updates.

fnesveda commented 1 year ago

Thanks, I assigned it to t-web 🙂

B4nan commented 1 year ago

I guess this one is resolved nowadays @jbartadev?