{"id":23650013,"url":"https://github.com/jensborch/go-foosball","last_synced_at":"2026-01-28T23:00:40.377Z","repository":{"id":37682760,"uuid":"120527652","full_name":"jensborch/go-foosball","owner":"jensborch","description":"Foosball REST service","archived":false,"fork":false,"pushed_at":"2026-01-27T21:03:39.000Z","size":24884,"stargazers_count":10,"open_issues_count":14,"forks_count":1,"subscribers_count":0,"default_branch":"master","last_synced_at":"2026-01-28T07:31:47.977Z","etag":null,"topics":["foosball","gin-gonic","go","golang","gorm-orm","material-ui","mui","react","react-query","rest-api","sqlite","swagger","typescript"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jensborch.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2018-02-06T21:51:52.000Z","updated_at":"2026-01-22T19:08:38.000Z","dependencies_parsed_at":"2026-01-06T10:01:04.760Z","dependency_job_id":null,"html_url":"https://github.com/jensborch/go-foosball","commit_stats":null,"previous_names":[],"tags_count":17,"template":false,"template_full_name":null,"purl":"pkg:github/jensborch/go-foosball","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jensborch%2Fgo-foosball","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jensborch%2Fgo-foosball/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jensborch%2Fgo-foosball/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jensborch%2Fgo-foosball/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jensborch","download_url":"https://codeload.github.com/jensborch/go-foosball/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jensborch%2Fgo-foosball/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28854402,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-28T22:56:21.783Z","status":"ssl_error","status_checked_at":"2026-01-28T22:56:00.861Z","response_time":57,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["foosball","gin-gonic","go","golang","gorm-orm","material-ui","mui","react","react-query","rest-api","sqlite","swagger","typescript"],"created_at":"2024-12-28T15:50:19.966Z","updated_at":"2026-01-28T23:00:40.343Z","avatar_url":"https://github.com/jensborch.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Foosball tournament applications\n\n[![Build](https://github.com/jensborch/go-foosball/actions/workflows/push-master.yml/badge.svg)](https://github.com/jensborch/go-foosball/actions/workflows/push-master.yml)\n[![Go Report Card](https://goreportcard.com/badge/github.com/jensborch/go-foosball)](https://goreportcard.com/report/github.com/jensborch/go-foosball)\n[![codecov](https://codecov.io/gh/jensborch/go-foosball/branch/master/graph/badge.svg)](https://codecov.io/gh/jensborch/go-foosball)\n\nGo-foosball is an application to manage your foosball tournaments. It supports multiple tournaments, and you can easily add players and tables. Each players receives a rating based on a chess like rating system (Elo).\n\n![Screenshot](screenshot.png)\n\nThe application is using a REST service back-end written in Go and a front-end created using TypeScript and React.\n\n## Run\n\nStart the application on MacOS using:\n\n```sh\n./go-foosball-darwin\n```\n\nor on Linux:\n\n```sh\n./go-foosball-linux\n```\n\nor on Windows:\n\n```bat\ngo-foosball.exe\n```\n\nThe GUI can then be accessed using [http://localhost:8080/]\n\nUse `--help` to list command line options - e.g.:\n\n```sh\n./go-foosball-darwin --help\n```\n\nThis will output:\n\n```txt\nUsage of ./go-foosball-darwin:\n  -db string\n        the database file (default \"foosball.db\")\n  -debug\n        enable debug\n  -port uint\n        the port number (default 8080)\n```\n\n## Build\n\nBuild the back-end using:\n\n```sh\nmake build\n```\n\nor\n\n```sh\ngo build -o go-foosball\n```\n\n[Go](https://go.dev/) must be installed.\n\nThe front-end will be embed in the back-end executable when build using:\n\n```sh\nmake client build\n```\n\nbut back-end and front-end can also run separately. To only build the front-end use:\n\n```sh\ncd client\npnpm build\n```\n\nTo only start the front-end use:\n\n```sh\ncd client\npnpm start\n```\n\n[Node.js](https://nodejs.org/) version 14 or above and [Yarn](https://yarnpkg.com/) must be installed.\n\n## Test\n\nTest the back-end using:\n\n```sh\nmake test\n```\n\nor\n\n```sh\ngo test -cover ./...\n```\n\nTest the front-end using:\n\n```sh\ncd client\npnpm test\n```\n\n## Swagger\n\n```sh\nmake swagger\n```\n\nor\n\n```sh\n$(go env GOPATH)/bin/swag init\n```\n\nSwagger can be viewed using [http://localhost:8080/swagger/index.html]\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjensborch%2Fgo-foosball","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjensborch%2Fgo-foosball","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjensborch%2Fgo-foosball/lists"}