https://github.com/mp70/delivery-platform-ingest-example
https://github.com/mp70/delivery-platform-ingest-example
Last synced: 12 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/mp70/delivery-platform-ingest-example
- Owner: MP70
- Created: 2025-07-17T00:58:16.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2025-07-17T01:02:02.000Z (12 months ago)
- Last Synced: 2025-07-19T07:23:05.021Z (12 months ago)
- Language: TypeScript
- Size: 18.6 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Order Data Ingestion Platform
Minimal order data ingestion and analysis example. Please don't use with untrusted csvs, or in a production/serious capacity. Three **unnamed** popular delivery plaforms.
## Quick Start
```bash
# Setup database
psql -d orders_db -f SCHEMA.sql
# Seed integrations
npx tsx seed-integrations.ts
```
## CLI Usage
```bash
# Process w Files
npx tsx cli.ts process "data.csv"
# Process w specific integration
npx tsx cli.ts process "data.csv" deliveryplatform3_total_order
# Run some example analysis
npx tsx cli.ts analyse
```