{"id":21639483,"url":"https://github.com/st0yanov/gomas","last_synced_at":"2025-04-11T16:52:36.019Z","repository":{"id":57525678,"uuid":"77790130","full_name":"st0yanov/gomas","owner":"st0yanov","description":"A Master Server for some of Valve's games written in Go.","archived":false,"fork":false,"pushed_at":"2017-02-18T07:25:38.000Z","size":1465,"stargazers_count":5,"open_issues_count":3,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-25T12:53:40.111Z","etag":null,"topics":["golang","gomas","hl1","masterserver","source","valve"],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","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/st0yanov.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":".github/CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2017-01-01T18:00:34.000Z","updated_at":"2024-06-13T01:07:54.000Z","dependencies_parsed_at":"2022-08-28T20:22:23.919Z","dependency_job_id":null,"html_url":"https://github.com/st0yanov/gomas","commit_stats":null,"previous_names":["st0yanov/gomas","veskoy/gomas"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/st0yanov%2Fgomas","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/st0yanov%2Fgomas/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/st0yanov%2Fgomas/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/st0yanov%2Fgomas/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/st0yanov","download_url":"https://codeload.github.com/st0yanov/gomas/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248443337,"owners_count":21104389,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["golang","gomas","hl1","masterserver","source","valve"],"created_at":"2024-11-25T04:13:52.402Z","updated_at":"2025-04-11T16:52:35.998Z","avatar_url":"https://github.com/st0yanov.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\u003cimg width=50% src=\"https://github.com/veskoy/gomas/blob/master/media/Logo.png\"\u003e\u003c/p\u003e\n\n\u003cp align=\"center\"\u003e\n\u003ca href=\"https://travis-ci.org/veskoy/gomas\"\u003e\u003cimg src=\"https://travis-ci.org/veskoy/gomas.svg?branch=master\" alt=\"Build Status\"\u003e\u003c/a\u003e\n\u003ca href=\"https://goreportcard.com/report/github.com/veskoy/gomas\"\u003e\u003cimg src=\"https://goreportcard.com/badge/github.com/veskoy/gomas\" alt=\"Go Report Card\"\u003e\u003c/a\u003e\n\u003ca href=\"https://github.com/veskoy/gomas/issues\"\u003e\u003cimg src=\"https://img.shields.io/github/issues/veskoy/gomas.svg\" alt=\"GitHub issues\"\u003e\u003c/a\u003e\n\u003ca href=\"https://raw.githubusercontent.com/veskoy/gomas/master/LICENSE\"\u003e\u003cimg src=\"https://img.shields.io/badge/license-MIT-blue.svg\" alt=\"GitHub license\"\u003e\u003c/a\u003e\n\u003c/p\u003e\n\n## Table Of Contents\n* [Table Of Contents](#table-of-contents)\n* [Basic Overview](#basic-overview)\n* [Installation](#installation)\n* [Usage](#usage)\n* [Changelog](#changelog)\n* [Contributing](#contributing)\n* [License](#license)\n* [Contributors](#contributors)\n\n## Basic Overview\n***Gomas*** is a Master Server written in [Go](https://golang.org/) for some of [Valve](http://www.valvesoftware.com/)'s multiplayer games. It is an implementation of the [Master Server Query Protocol](https://developer.valvesoftware.com/wiki/Master_Server_Query_Protocol). The main objective of Gomas is to allow the community to run 3rd party quality master servers.\n\n## Installation\nGomas hasn't been released yet. This means there are no stable executables that you can use out of the box. Gomas is in its early stage and goes through rapid development. For that reason the only way you can run and try it out is by building it from source (Linux / MacOS):\n\n    git clone https://github.com/veskoy/gomas.git\n    cd gomas\n    go get -v -t ./...\n    go build -o ./gomasd ./cmd/gomasd\n\n    This will make an executable \"./gomasd\" which you can use to start a Master Server.\n\n## Usage\n\n**Default - the master server will listen on 127.0.0.1:27010:**\n\n    ./gomasd\n\n**Start a master server that will listen on specified ip address and port:**\n\n    ./gomasd -ip=xxx.xxx.xxx.xxx -port=xxxxx\n\n**Truncate/Seed/Reset database on startup:**\n\n    ./gomasd -ip=xxx.xxx.xxx.xxx -port=xxxxx -db=truncate\n    ./gomasd -ip=xxx.xxx.xxx.xxx -port=xxxxx -db=seed\n    ./gomasd -ip=xxx.xxx.xxx.xxx -port=xxxxx -db=reset\n\n## Changelog\nTo see what has changed in recent versions of Gomas, see the [CHANGELOG](https://github.com/veskoy/gomas/blob/master/CHANGELOG.md).\n\n## Problems\nPlease report and follow the resolution of any encountered problems in the [issue tracker](https://github.com/veskoy/gomas/issues).\n\n## Contributing\nThank you for considering contributing to Gomas. Any contributions are always welcomed as long as they follow our [contributing guidelines](https://github.com/veskoy/gomas/blob/master/CONTRIBUTING.md).\n\n## License\nGomas is open-sourced software licensed under the [MIT license](http://opensource.org/licenses/MIT).\n\n## Contributors\n* **Author:** [Veselin Stoyanov](https://github.com/veskoy)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fst0yanov%2Fgomas","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fst0yanov%2Fgomas","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fst0yanov%2Fgomas/lists"}