34 lines
786 B
Markdown
34 lines
786 B
Markdown
# ThingsBoard
|
|
|
|
<p align="center">
|
|
<span><a href="https://thingsboard.io/docs/" alt="ThingsBoard Docs">Documentation</a></span>
|
|
<span><a href=http://localhost:8080/" alt="local ThingsBoard instance">Local instance</a></span>
|
|
</p>
|
|
|
|
## Setup
|
|
|
|
After cloning the repository for the first time, you need to seed the database:
|
|
|
|
```sh
|
|
docker compose run --rm -e INSTALL_TB=true -e LOAD_DEMO=true thingsboard-ce
|
|
```
|
|
|
|
Then, to start ThingsBoard:
|
|
|
|
```sh
|
|
docker compose up -d
|
|
```
|
|
|
|
A [dashboard](http://localhost:8080/) will start on port `8080`.
|
|
|
|
Login credentials:
|
|
|
|
* System Administrator: `sysadmin@thingsboard.org` / `sysadmin`
|
|
* Tenant Administrator: `tenant@thingsboard.org` / `tenant`
|
|
* Customer User: `customer@thingsboard.org` / `customer`
|
|
|
|
Stop ThingsBoard:
|
|
|
|
```sh
|
|
docker compose down
|
|
```
|