mtg-visual-search/README.md

22 lines
719 B
Markdown
Raw Permalink Normal View History

2024-05-26 17:32:17 +00:00
# MTG Visual Search
Web utility to search Magic: The Gathering cards by artwork contents. Uses card data and images from the [Scryfall API](https://scryfall.com/docs/api). Relies on caption data generated by [mtg-chair-ai](https://git.hobbs.zone/henry/mtg-chair-ai).
2024-05-23 21:18:39 +00:00
This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app).
## Getting Started
2024-05-26 17:32:17 +00:00
See [mtg-chair-ai](https://git.hobbs.zone/henry/mtg-chair-ai) for instructions on generating caption data. Data should by placed in the root directory as `data.json`.
Install dependencies:
2024-05-23 21:18:39 +00:00
```bash
2024-05-26 17:32:17 +00:00
npm install
2024-05-23 21:18:39 +00:00
```
2024-05-26 17:32:17 +00:00
Run the development server:
2024-05-23 21:18:39 +00:00
2024-05-26 17:32:17 +00:00
```bash
npm run dev
```