You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Refactor React app structure: replace AppShell with TopBar for layout, enhance theme handling, and improve authentication flows. Update README for clarity on project features and setup. Add user account management capabilities including profile deletion and password change. Enhance UI components with new logo and alert designs.
A production-ready, agent-friendly full-stack foundation built to run on Cloudflare’s edge platform.
5
+
A full-stack Cloudflare starter that gets you building real features immediately — production-ready, optimized for AI agents, and built to scale on Cloudflare’s global edge network.
6
6
7
-
Clone it, set it up, and start building. Authentication, database, UI, CLI, and deployment are all ready to go.
7
+
Install it and start building. Authentication, database, UI, CLI, and deployment are all ready to go.
8
8
9
9
A great starting point for your next MVP or SaaS app.
10
10
@@ -30,9 +30,9 @@ This means you can build, launch, and validate your idea without upfront infrast
30
30
31
31
Cloudflare gives you remarkable power at the edge, but it isn’t a traditional hosting platform. Most mainstream web frameworks don’t run on Workers out of the box, and adapting them to Cloudflare’s request-driven runtime can feel unfamiliar if you’re used to environments that hide the wiring. That early friction slows down the part you actually care about: building something new.
32
32
33
-
Agentic coding helps, but unfamiliar runtimes are still a weak spot. On platforms like Cloudflare, agents rarely succeed on the first attempt. They burn cycles rebuilding boilerplate, fixing type and lint errors, debugging auth flows, smoothing out theme flicker, tweaking configs, and juggling multi-environment setups — all the fragile infrastructure work that slows real development. And every new project means repeating the same setup steps.
33
+
Agentic coding helps, but unfamiliar runtimes are still a weak spot. When developing for platforms like Cloudflare, agents rarely succeed on the first attempt. They burn cycles rebuilding boilerplate, fixing type and lint errors, debugging auth flows, smoothing out theme flicker, tweaking configs, and juggling multi-environment setups — all the fragile infrastructure work that slows real development. And every new project means repeating the same setup steps.
34
34
35
-
This starter removes that overhead entirely. From the moment you create a project from this template — or even ask your coding agent to install it for you — you begin with a fully working, production-grade foundation:
35
+
This starter removes that overhead entirely. From the moment you create a project from this template — or even ask your coding agent to install it for you — you begin with a fully working, production-ready foundation:
@@ -220,18 +225,41 @@ If wrangler is logged in, you can do it from the command line:
220
225
221
226
### Auth Management
222
227
228
+
Manage users directly from your terminal — useful for creating admin accounts, debugging, or scripting.
229
+
230
+
> ⚠️ When managing local users, **the dev server must be running** (`npm run dev`) for these commands to work. They communicate with the API at `http://localhost:5173`.
231
+
223
232
```bash
233
+
# List all users (shows email, name, verification status, creation date)
224
234
npm run auth list-users
235
+
npm run auth list-users -- --limit 10 # limit results
236
+
npm run auth list-users -- --search "john"# search by email or name
237
+
238
+
# Create a new user (useful for seeding admin accounts)
0 commit comments