Skip to content
Open
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
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,11 @@ Node.js + Express (TypeScript) service that will power the StreamPay API gateway
npm run build && npm start
```

API will be at `http://localhost:3001` (or `PORT` env). Try `GET /health` and `GET /api/streams`.
API will be at `http://localhost:3001` (or `PORT` env).

- **Health Check**: `GET /health`
- **Streams API**: `GET /api/v1/streams`
- **OpenAPI Spec**: `GET /api/openapi.json`

## Indexer webhook ingestion

Expand Down
Empty file added lint.txt
Empty file.
Empty file added lint2.txt
Empty file.
12 changes: 12 additions & 0 deletions lint_fixed.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@

C:\Users\ADMIN\Desktop\remmy-drips\StreamPay-Backend\src\api\v1\streams.test.ts
11:102 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
46:101 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any

C:\Users\ADMIN\Desktop\remmy-drips\StreamPay-Backend\src\repositories\streamRepository.test.ts
18:35 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
19:18 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
25:27 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any

Γ£û 5 problems (5 errors, 0 warnings)

Binary file added lint_output.txt
Binary file not shown.
Binary file added lint_results.json
Binary file not shown.
45 changes: 42 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,13 @@
"node": ">=18"
},
"dependencies": {
"@asteasolutions/zod-to-openapi": "^8.5.0",
"cors": "^2.8.5",
"dotenv": "^17.3.1",
"drizzle-orm": "^0.45.1",
"express": "^4.21.0",
"pg": "^8.20.0",
"prom-client": "^15.1.3",
"zod": "^4.3.6"
},
"devDependencies": {
Expand Down
Loading
Loading