Add sets endpoints (GET /sets and GET /sets/:setId/cards)
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
2026-05-16 00:51:38 +02:00
parent 8f3d0ee0a8
commit 34f7e6a9c6
4 changed files with 107 additions and 1 deletions
+53 -1
View File
@@ -1 +1,53 @@
## Start Api: node src/index.js
# YuGiOh Collection Manager — API
Node.js/Express API for the YuGiOh collection manager. Handles card data, set browsing, image serving, and DB imports from YGOPRODeck.
## Tech Stack
- **Node.js** + **Express 5**
- **MySQL2** (connection pool)
- **Axios** — YGOPRODeck API requests + card image fetching
## Endpoints
| Method | Path | Description |
|---|---|---|
| GET | `/health` | Health check |
| GET | `/exportCards` | All cards with printings and owned counts |
| GET | `/cardImage/:cardId` | Card image (fetches + caches blob on first request) |
| GET | `/sets` | All sets with owned card counts |
| GET | `/sets/:setId/cards` | Cards in a specific set |
| PUT | `/collection/amount` | Update owned count for a printing |
| POST | `/import/full-import` | Full DB import from YGOPRODeck |
| POST | `/import/sets` | Import sets only |
| POST | `/import/cards` | Import cards only |
| GET | `/db-version` | Current local DB version |
## Development
```bash
npm install
cp .env.example .env # fill in DB credentials
node src/index.js
```
## Deployment
Built as a Docker image. CI/CD via Woodpecker on push to `main`.
```bash
docker build -t yugioh-api .
docker run -d --name yugioh-api --network yugioh --env-file .env yugioh-api
```
## Environment
| Variable | Description |
|---|---|
| `DB_HOST` | MySQL host |
| `DB_PORT` | MySQL port (default 3306) |
| `DB_USER` | MySQL user |
| `DB_PASSWORD` | MySQL password |
| `DB_NAME` | Database name |
| `YGOPRO_API_BASE` | YGOPRODeck API base URL |
| `PORT` | Server port (default 3000) |