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.
- Host: GitHub
- URL: https://github.com/whywaita/playercards-from-nfc
- Owner: whywaita
- Created: 2023-04-06T16:30:47.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-04-06T16:43:02.000Z (almost 3 years ago)
- Last Synced: 2025-05-25T15:49:19.660Z (10 months ago)
- Language: Go
- Homepage:
- Size: 501 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.

## 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
```