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

https://github.com/whywaita/playercards-from-nfc

This is a viewer for player cards that allows users to view player card information.
https://github.com/whywaita/playercards-from-nfc

Last synced: 7 months ago
JSON representation

This is a viewer for player cards that allows users to view player card information.

Awesome Lists containing this project

README

          

# playercards-from-nfc

This is a viewer for player cards that allows users to view player card information.

The application allows users to browse player cards, view details.

![Usage](./assets/pcfm-usage.png)

## Components

- API Server (Go wit libnfc)
- `./cmd/cmd.go`
- The Raspberry Pi connected to the NFC reader.
- Frontend (Next.js)
- `./ui`

## How to run

### API Server

```bash
$ go build -o app ./cmd/cmd.go
$ sudo ./app
```

### Frontend

```bash
$ cd ui
$ npm install
$ npm run dev
```