https://github.com/alexandrehiroyuki/mock-devboard
Connect, Watch, and Report real and mock devices. This project was created as part of the bem-te-vi challenge.
https://github.com/alexandrehiroyuki/mock-devboard
Last synced: 2 months ago
JSON representation
Connect, Watch, and Report real and mock devices. This project was created as part of the bem-te-vi challenge.
- Host: GitHub
- URL: https://github.com/alexandrehiroyuki/mock-devboard
- Owner: AlexandreHiroyuki
- License: mit
- Created: 2024-11-18T23:18:10.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-01-22T04:39:47.000Z (over 1 year ago)
- Last Synced: 2025-06-05T14:41:17.629Z (about 1 year ago)
- Language: TypeScript
- Homepage: https://mock-devboard.vercel.app
- Size: 766 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# MockDevboard
**"Watch your devices with intelligence"**
Connect with devices and plot data, possibly creating mock devices and data. This project was created as part of the bem-te-vi challenge.
## Installation
### Docker Postgres
> https://www.docker.com/blog/how-to-use-the-postgres-docker-official-image/
```sh
docker compose up -d
```
### Frontend
```sh
cd frontend
yarn
yarn dev
```
### Backend
```sh
cd backend
yarn
yarn dev
```
Configure `.env` file in the backend folder following the `.env.example` file.
Tip: generate JWT_SECRET using:
```sh
openssl rand -base64 172 | tr -d '\ n'
```
> Where 172 is the number of characters in the generated string (choose the one you want).
Migration:
```sh
yarn drizzle-kit push
```
## Integrate your device using our API
(WIP)