https://github.com/schweigert/mga
Go Massively Game Architectures
https://github.com/schweigert/mga
Last synced: over 1 year ago
JSON representation
Go Massively Game Architectures
- Host: GitHub
- URL: https://github.com/schweigert/mga
- Owner: schweigert
- License: mit
- Archived: true
- Created: 2018-11-15T14:06:56.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-04-26T01:08:49.000Z (about 7 years ago)
- Last Synced: 2025-02-12T11:52:46.944Z (over 1 year ago)
- Language: Go
- Homepage:
- Size: 1.67 MB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://travis-ci.org/schweigert/mga)
[](https://coveralls.io/github/schweigert/mga?branch=master)
# mga
Go Massively Game Architecture.
## Dev deps
- Dev deps: https://github.com/kardianos/govendor
- Docker:
```
sudo apt remove docker docker-engine docker.io
sudo apt install apt-transport-https ca-certificates curl software-properties-common
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
sudo apt-key fingerprint 0EBFCD88
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu xenial stable"
# sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
sudo apt update
sudo apt install docker-ce
sudo usermod -aG docker exampleuser
sudo curl -L https://github.com/docker/compose/releases/download/1.21.2/docker-compose-`uname -s`-`uname -m` -o /usr/local/bin/docker-compose
sudo chmod +x /usr/local/bin/docker-compose
```