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
Copy file name to clipboardExpand all lines: README.md
+26-4Lines changed: 26 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@
9
9
</p>
10
10
11
11
<p>
12
-
Choose the right foundation for your next project based on your preferred frontend approach.
12
+
Choose the right foundation for your next project based on your preferred architecture.
13
13
</p>
14
14
15
15
<br>
@@ -29,11 +29,12 @@
29
29
30
30
## 📦 Available Starter Kits
31
31
32
-
This repository contains the official AdonisJS starter kits, each tailored for different frontend approaches and use cases.
32
+
This repository contains the official AdonisJS starter kits, each tailored for different architectures and use cases.
33
33
34
34
| Starter Kit | Description | Best For |
35
35
|-------------|-------------|----------|
36
-
|[**API**](./api)| Type-safe REST API with dual authentication (tokens & sessions) | Building APIs for any frontend, mobile apps, third-party integrations |
36
+
|[**API**](./api)| Standalone type-safe REST API with dual authentication (tokens & sessions) | Backend-only services, mobile apps, third-party integrations |
37
+
|[**API Monorepo**](./api-monorepo)| API backend + dedicated frontend workspace in a monorepo | Full-stack teams that want backend and frontend in the same repository |
37
38
|[**Hypermedia**](./hypermedia)| Server-rendered applications with Edge.js templates and Alpine.js | Traditional web apps, admin panels, content sites |
38
39
|[**Inertia React**](./inertia-react)| Single-page applications with React and Inertia.js | Modern SPAs with React ecosystem |
39
40
|[**Inertia Vue**](./inertia-vue)| Single-page applications with Vue and Inertia.js | Modern SPAs with Vue ecosystem |
@@ -44,7 +45,7 @@ This repository contains the official AdonisJS starter kits, each tailored for d
44
45
45
46
### API Starter Kit
46
47
47
-
Build type-safe REST APIs with dual authentication (API tokens and sessions) that work with any frontend framework.
48
+
Build a standalone, type-safe REST API with dual authentication (API tokens and sessions).
<strong>A batteries-included AdonisJS starter kit for building modern, type-safe APIs.</strong>
6
+
<strong>The backend workspace for the AdonisJS API Monorepo starter kit.</strong>
7
7
</p>
8
8
9
9
<p>
10
-
Built for developers who want a production-ready API with any frontend framework.
10
+
Built for teams who want a production-ready API inside a full-stack monorepo.
11
11
</p>
12
12
13
13
<br>
@@ -27,7 +27,7 @@
27
27
28
28
## ✨ What's in the Box
29
29
30
-
This starter kit is designed to help you build production-ready APIs with AdonisJS. It provides a solid foundation with authentication, type-safe routes, and everything you need to build modern APIs that work with any frontend framework.
30
+
This backend workspace is designed to help you build production-ready APIs with AdonisJS. It provides a solid foundation with authentication, type-safe routes, and everything you need to power any frontend from a shared monorepo.
31
31
32
32
### 🎯 Core Features
33
33
@@ -148,7 +148,7 @@ Your API will be running at `http://localhost:3333`
148
148
-`POST /api/v1/auth/signup` - Create a new account
149
149
-`POST /api/v1/auth/login` - Login and get access token
-`GET /api/v1/me` - Get current user (requires authentication)
151
+
-`GET /api/v1/account/profile` - Get current user profile (requires authentication)
152
152
153
153
---
154
154
@@ -219,7 +219,7 @@ You can easily switch between strategies by changing the guard in your middlewar
219
219
220
220
## 🤝 Contributing
221
221
222
-
This starter kit is maintained by the AdonisJS team. Found a bug or have a suggestion? [Open an issue](https://github.com/adonisjs/api-starter-kit/issues) or submit a pull request!
222
+
This starter kit is maintained by the AdonisJS team. Found a bug or have a suggestion? [Open an issue](https://github.com/adonisjs/starter-kits/issues) or submit a pull request!
Copy file name to clipboardExpand all lines: api-monorepo/apps/frontend/README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# Frontend Workspace
2
2
3
-
This is an **empty frontend starter** for the AdonisJS API Starter Kit. You can set up any frontend application to consume the type-safe API from the backend.
3
+
This is an **empty frontend starter** for the AdonisJS API Monorepo Starter Kit. You can set up any frontend application to consume the type-safe API from the backend.
0 commit comments