create-velox-app 0.6.85 → 0.6.86
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/GUIDE.md +4 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/GUIDE.md
CHANGED
|
@@ -17,9 +17,10 @@ Your app will be running at `http://localhost:3030`
|
|
|
17
17
|
|
|
18
18
|
```bash
|
|
19
19
|
npx create-velox-app my-app # Default REST API
|
|
20
|
-
npx create-velox-app my-app --auth # With authentication
|
|
21
|
-
npx create-velox-app my-app --trpc # tRPC-only setup
|
|
22
|
-
npx create-velox-app my-app --rsc # Full-stack
|
|
20
|
+
npx create-velox-app my-app --auth # With JWT authentication
|
|
21
|
+
npx create-velox-app my-app --trpc # tRPC-only setup (no REST)
|
|
22
|
+
npx create-velox-app my-app --rsc # Full-stack RSC with Vinxi
|
|
23
|
+
npx create-velox-app my-app --rsc-auth # Full-stack RSC + JWT authentication
|
|
23
24
|
```
|
|
24
25
|
|
|
25
26
|
## Project Structure
|