Question

Replit app sleeps and the first donor gets a 30 second spinner

Solved · 53 views · asked by amara_v · edited

My donor form is on Replit. Nobody uses it at night, and the first person in the morning waits 30 seconds. Some give up.

What I’ve tried

Turned on "Always On" once, but it costs more than the donations some months.

Comment

1 answer

Marked as helpful by the asker
jonas_k · edited

That's the cold start. Two cheap options:

  1. A free uptime monitor (Better Stack, UptimeRobot) pinging your URL every 5 minutes keeps it awake for free.
  2. Move the form to a static host (Vercel, Netlify) and only call Replit for the submit. Static pages never sleep.

For a donation form I'd do 2: the page must be instant, the backend can take a second.

Comment