Remix.run Logo
mustaphah 4 hours ago

Looks like you're hosting this on fly.io - PAYG model. You could probably host this for free on Cloudflare Workers; 100k requests/day on the free tier; static content (the homepage) is free & unlimited.

Edit: The catch is the 10ms CPU cap per request - you'd need a super lean implementation. Django's too heavy for that.

mustaphah 3 hours ago | parent | next [-]

Well, someone already did with JS: https://github.com/ProfessorManhattan/rss-worker

0cf8612b2e1e 4 hours ago | parent | prev [-]

Python alone is many milliseconds to start. Unless they give you some allowances for interpreter overhead.