Prerequisites #
For this Getting Started, you will need:
- basic knowledge of Kuzzle
- those prerequisites https://docs.kuzzle.io/core/2/guides/getting-started/run-kuzzle/
Install IoT Platform #
First, you need to initialize and application with a frontend and a backend using the IoT Platform frameworks.
The easiest way is to use the Github Template:
git clone git@github.com:kuzzleio/template-kiotp-project.git my-iot-project
This template is a monorepo containing both backend and frontend app and using Turborepo.
apps/api
contains a backend application using Kuzzle and the IoT Backend framework.apps/web
contains a frontend application using Vue.js and the IoT Console frameworkdocker-compose.yml
is a Docker Compose file to run the external services
You can run your IoT application with the following commands from the root of your project:
docker-compose up -d
npm install
npx turbo dev
This will run:
Edit this page on Github (opens new window)