https://github.com/flipperdevices/flipperzero-remote-testbench-front
Remote testbench for Flipper zero - Frontend
https://github.com/flipperdevices/flipperzero-remote-testbench-front
Last synced: about 1 year ago
JSON representation
Remote testbench for Flipper zero - Frontend
- Host: GitHub
- URL: https://github.com/flipperdevices/flipperzero-remote-testbench-front
- Owner: flipperdevices
- Created: 2020-10-06T13:03:44.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-12-04T10:33:26.000Z (over 5 years ago)
- Last Synced: 2025-04-01T03:51:13.270Z (about 1 year ago)
- Language: JavaScript
- Size: 325 KB
- Stars: 44
- Watchers: 11
- Forks: 7
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Flipper Zero Remote test Bench [Front-end Server]

Fliper Zero Remote test bech — is hardware + software system for remotely control current Flipper Zero dev board. It is used for automated and manual testing. This repo contains files of Front-end Server.
**URL:** https://lab.flipperzero.one
## Project sctructure

```
.
├── www # Web UI
├── nginx # RTMP Streamer config
└── Dockerfile # Docker files
```
## Running in Docker
Two ports are exposed: `80` for web and `1935` for RTMP receiver.
The image could be used like that:
```
docker run --name lab -d \
-p 1935:1935 \
-p 80:80 \
flipperdevices/flipperzero-remote-testbench-front
```