Skip to content

Blarc/advent-of-code-bingo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

67 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

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