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
_An application running with [Kuzzle](https://github.com/kuzzleio/kuzzle)_
11
+
## Why Kuzzle ?
12
+
13
+
Kuzzle is a [generic backend](https://docs.kuzzle.io/core/2/guides/introduction/general-purpose-backend/) offering **the basic building blocks common to every application**.
14
+
15
+
Rather than developing the same standard features over and over again each time you create a new application, Kuzzle proposes them off the shelf, allowing you to focus on building **high-level, high-value business functionalities**.
16
+
17
+
Kuzzle enables you to build modern web applications and complex IoT networks in no time.
18
+
19
+
***API First**: use a standardised multi-protocol API.
20
+
***Persisted Data**: store your data and perform advanced searches on it.
21
+
***Realtime Notifications**: use the pub/sub system or subscribe to database notifications.
22
+
***User Management**: login, logout and security rules are no more a burden.
23
+
***Extensible**: develop advanced business feature directly with the integrated framework.
24
+
***Client SDKs**: use our SDKs to accelerate the frontend development.
25
+
26
+
Learn how Kuzzle will accelerate your developments :point_right:https://docs.kuzzle.io/core/2/guides/introduction/what-is-kuzzle/
27
+
28
+
## Kuzzle in production
29
+
30
+
Kuzzle is production-proof, and can be [deployed anywhere](https://kuzzle.io/products/by-features/on-premises/).
31
+
32
+
With Kuzzle, it is possible to deploy applications that can serve tens of thousands of users with very good performances.
33
+
34
+
Check out our [support plans](https://kuzzle.io/pricing/).
4
35
5
36
## Installation and run
6
37
@@ -10,10 +41,72 @@ Requirement:
10
41
- Docker
11
42
- Docker-Compose
12
43
13
-
First, install [Kourou](https://github.com/kuzzleio/kourou), the Kuzzle CLI: `npm install -g kourou`
14
-
15
44
# Usage
16
45
17
46
```bash
18
47
docker compose up -d
19
-
```
48
+
```
49
+
50
+
## Use the framework
51
+
52
+
Your first Kuzzle application is inside the `app.ts` file.
53
+
54
+
For example, you can add a new [API Controller](https://docs.kuzzle.io/core/2/guides/develop-on-kuzzle/api-controllers):
0 commit comments