Skip to content

Blarc/advent-of-code-bingo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

61446e1 · Dec 2, 2023

History

67 Commits
Nov 3, 2023
Dec 1, 2023
Dec 2, 2023
Nov 3, 2023
Nov 29, 2023
Nov 3, 2023
Nov 3, 2023
Nov 29, 2023
Nov 29, 2023
Nov 30, 2023

Repository files navigation

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