Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/jalilbengoufa/ptp

pipe to pipe, just piping data to pipe data because why not
https://github.com/jalilbengoufa/ptp

golang kafka postgres redis sqlite

Last synced: 11 days ago
JSON representation

pipe to pipe, just piping data to pipe data because why not

Awesome Lists containing this project

README

        

# ptp

pipe to pipe, just piping data to pipe data because why not

### Requirements

- go 1.20
- make
- air (optional)
- docker and docker-compose

### Usage

- mv .env.example .env
- go mod download
- docker compose up -d
- make dev

```mermaid
graph TD;

file[File Module]
sqlite[SQLite Module]
kafka[Kafka Module]
postgres[Postgres Module]
redis[Redis Module]
websocket[WebSocket Module]

file --> sqlite
sqlite --> kafka
kafka --> postgres
postgres --> redis
redis --> websocket
```