Skip to content

Latest commit

 

History

History
29 lines (22 loc) · 673 Bytes

README.md

File metadata and controls

29 lines (22 loc) · 673 Bytes

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