Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
661 changes: 661 additions & 0 deletions LICENSE

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ Real-time crypto market lakehouse built end-to-end.

~5M ticks/day · 50 pairs · <30s end-to-end freshness · Postgres CDC via Debezium

## License

TickSense is licensed under the GNU Affero General Public License v3.0 only
(`AGPL-3.0-only`). See [LICENSE](LICENSE) for the full license text.

## Architecture

```
Expand Down
1 change: 1 addition & 0 deletions api/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
name = "ticksense-api"
version = "0.1.0"
description = "FastAPI query layer over Trino + Iceberg"
license = { text = "AGPL-3.0-only" }
requires-python = ">=3.12"
dependencies = [
"fastapi>=0.115.0",
Expand Down
1 change: 1 addition & 0 deletions ingest/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
name = "ticksense-ingest"
version = "0.1.0"
description = "Binance L2 WebSocket ingestion into Kafka"
license = { text = "AGPL-3.0-only" }
requires-python = ">=3.12"
dependencies = [
"websockets>=13.0",
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
name = "ticksense"
version = "0.1.0"
description = "Real-time crypto market lakehouse"
license = { text = "AGPL-3.0-only" }
requires-python = ">=3.12"

[tool.uv.workspace]
Expand Down
1 change: 1 addition & 0 deletions replay/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
name = "ticksense-replay"
version = "0.1.0"
description = "Kafka offset replay producer for historical backfill and incident recovery"
license = { text = "AGPL-3.0-only" }
requires-python = ">=3.12"
dependencies = [
"aiokafka>=0.11.0",
Expand Down
Loading