문제

My web application will need to execute 1 specific function every 1 hour. Does it have anyway to deploy it into Heroku without using worker (I'm using Python)?

도움이 되었습니까?

해결책

Use the Heroku scheduler addon to trigger your function every hour, it's free and it doesn't require a dedicated worker.

You just need to make sure it's callable from a single file (i.e. python do_something.py)

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top