https://github.com/timeplus-io/apps
Timeplus Applications
https://github.com/timeplus-io/apps
Last synced: about 1 month ago
JSON representation
Timeplus Applications
- Host: GitHub
- URL: https://github.com/timeplus-io/apps
- Owner: timeplus-io
- Created: 2026-05-05T23:22:00.000Z (about 2 months ago)
- Default Branch: main
- Last Pushed: 2026-05-22T19:56:25.000Z (about 1 month ago)
- Last Synced: 2026-05-22T22:33:26.283Z (about 1 month ago)
- Language: PLpgSQL
- Size: 314 KB
- Stars: 0
- Watchers: 0
- Forks: 1
- Open Issues: 4
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# Timeplus Apps
A collection of installable Timeplus apps (`.tpapp` packages). Each app bundles a streaming data pipeline — DDL SQL resources and dashboards — into a single zip archive.
**Browse the catalog:** **** — searchable index of every app with descriptions, screenshots, and direct download links.
## Apps
| App | Description | Downloads |
|-----|-------------|-----------|
| [market-data](apps/market-data/README.md) | Real-time crypto market data from Coinbase WebSocket — OHLC candlesticks, RSI, VWAP, and alpha signals |  |
| [alpha-101](apps/alpha-101/readme.md) | Streaming demo of WorldQuant Alpha #1 and Alpha #2 over a synthetic multi-stock random feed — cross-sectional rank, lag arrays, rolling correlation, with live + backtest dashboards |  |
| [github](apps/github/) | Real-time GitHub public events pipeline — hot repos, push activity, and live event feed via PyGithub |  |
| [cep](apps/cep/) | Complex event processing demo — SQL-based fraud detection and JavaScript UDF pattern matching over simulated event streams |  |
| [hacker-news](apps/hacker-news/) | Continuously ingests Hacker News posts and comments via the Firebase API — trending stories, active users, and post-type distributions |  |
| [invest-insights](apps/invest-insights/) | Real-time trading monitoring — order management, position tracking, continuous auction participation rate, and live P&L |  |
| [cisco-asa-ddos](apps/cisco-asa-ddos/) | Real-time DDoS detection from simulated Cisco ASA firewall logs — dynamic per-IP baselines, spike detection, and webhook alerting |  |
| [game-feature-pipeline](apps/game-feature-pipeline/) | Real-time ML feature pipeline for game analytics — player actions, transactions, social engagement, and spend anomaly detection |  |
## Build & Install
```bash
# Build an app (default: market-data)
make build APP=
# Build and install to a local Timeplus instance
make install APP=
# Override the target instance
make install APP= NEUTRON_URL=http://my-host:8000 TENANT=my-tenant
```
## Adding a New App
1. Create `apps//` with `manifest.yaml`, `ddl/`, and `dashboards/`
2. Copy the `Makefile` from an existing app and update `APP_NAME`
3. Run `make build APP=` from the repo root