https://github.com/blarc/advent-of-code-bingo
Web application for playing bingo based on Advent of Code.
https://github.com/blarc/advent-of-code-bingo
advent-of-code aoc bingo
Last synced: 3 months ago
JSON representation
Web application for playing bingo based on Advent of Code.
- Host: GitHub
- URL: https://github.com/blarc/advent-of-code-bingo
- Owner: Blarc
- License: gpl-3.0
- Created: 2023-11-03T12:24:34.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-12-04T04:53:06.000Z (almost 2 years ago)
- Last Synced: 2025-07-19T11:31:59.057Z (3 months ago)
- Topics: advent-of-code, aoc, bingo
- Language: Go
- Homepage: https://aoc-bingo.fly.dev
- Size: 1.87 MB
- Stars: 2
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Advent of Code Bingo
Web application for playing bingo based on Advent of Code.## Development
### Generating swagger
```bash
cd ./backend
swag init --parseDependency --parseInternal
```### Running the server
First you need to build the frontend:
```bash
cd ./frontend
npm run build
```
Then you can run the server that serves both backend and frontend:```bash
cd ./backend
go run .
```
Swagger is available at http://localhost:8080/api/v1/swagger/index.html and the frontend at http://localhost:8080/.## Acknowledgements
- Inspired by [this reddit post](https://www.reddit.com/r/adventofcode/comments/17icom1/ive_created_bingo_cards_to_have_a_little_fun_at/).