What this unlocks
Rushed can now move beyond frontend-only projects when the app needs live product behavior. That includes:- sign-in
- saved data
- uploads
- realtime updates
- server-side logic
How backend setup works
When your prompt clearly asks for backend features, Rushed can:- provision a managed backend
- connect the generated app to it
- store platform-managed values automatically
- show the backend dashboard inside the project
What shows up in Env Variables
Project settings now include anEnv Variables section.
There are two main kinds of values:
- platform-managed values that Rushed adds automatically
- user-required values that you need to supply for outside services
When Rushed will ask you for keys
Rushed only interrupts you for values it cannot generate itself. Examples:GOOGLE_CLIENT_IDGOOGLE_CLIENT_SECRETRESEND_API_KEYSTRIPE_SECRET_KEY
Frontend env naming by framework
Rushed uses framework-appropriate public env names:- Next.js uses
NEXT_PUBLIC_ - Vite uses
VITE_ - Astro uses
PUBLIC_
Best practice
Ask for product behavior, not implementation trivia. Good prompts:- Add Google sign-in and save each user’s profile
- Connect this dashboard to live task data
- Replace the mock calendar data with real saved events
- Add some backend stuff
- Make this more fullstack
