https://github.com/gly-engine/server-ginga-ccws
Mock ginga web server / ABNT NBR 15606-11
https://github.com/gly-engine/server-ginga-ccws
Last synced: about 1 year ago
JSON representation
Mock ginga web server / ABNT NBR 15606-11
- Host: GitHub
- URL: https://github.com/gly-engine/server-ginga-ccws
- Owner: gly-engine
- Created: 2025-05-07T11:03:33.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-05-16T18:25:59.000Z (about 1 year ago)
- Last Synced: 2025-05-16T19:28:58.240Z (about 1 year ago)
- Language: TypeScript
- Homepage:
- Size: 9.77 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Server Ginga CCWS
Mock ginga web server - ABNT NBR 15606 11
> A mock server for Ginga-based DTVi applications, built to support ABNT NBR 15606-11.
Ideal for testing interactive digital TV applications in a local environment with [Telemedia Ginga](https://github.com/TeleMidia/ginga) or a **desktop browser**.
* **Default Server URL:**
* **API Documentation:**
## :rocket: Quick Start
```
wget https://get.gamely.com.br/ccws
```
```
chmod +x ccws
```
```
./ccws
```
## :hammer_and_wrench: Building from Source
* **using bun**
```
bun run build
```
* **Using NPM + NodeJS**
```
npm install
```
```
npm run build
```
* **Using Docker + Bun**
```
docker run --rm -v $(pwd):/app -w /app oven/bun bun run build
```
## :gear: Running from source
* **using bun**
```
bun start
```
* **Using NPM + NodeJS**
```
npm install
npm start
```
* **Using Docker + Bun**
```
docker run --rm -v $(pwd):/app -w /app -p 44642:44642 oven/bun bun start
```
---
**:warning: Note:** _This application does not handle media playback. It only simulates state transitions. For example, attempting to pause a non-playing stream will result in an error._