/advent-of-code-bingo

Web application for playing bingo based on Advent of Code.

Primary LanguageGoGNU General Public License v3.0GPL-3.0

Advent of Code Bingo

Web application for playing bingo based on Advent of Code.

Development

Generating swagger

cd ./backend
swag init --parseDependency --parseInternal

Running the server

First you need to build the frontend:

cd ./frontend
npm run build

Then you can run the server that serves both backend and frontend:

cd ./backend
go run .

Swagger is available at http://localhost:8080/api/v1/swagger/index.html and the frontend at http://localhost:8080/.

Acknowledgements