Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kot13/gommo
Simple mmo-rpg on phaser.js and go
https://github.com/kot13/gommo
golang mmorpg phaser
Last synced: 4 months ago
JSON representation
Simple mmo-rpg on phaser.js and go
- Host: GitHub
- URL: https://github.com/kot13/gommo
- Owner: kot13
- Created: 2017-06-04T08:31:12.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-06-13T19:18:52.000Z (over 7 years ago)
- Last Synced: 2024-09-28T14:02:37.375Z (4 months ago)
- Topics: golang, mmorpg, phaser
- Language: JavaScript
- Homepage: http://gommo.demostage.ru/
- Size: 3.85 MB
- Stars: 4
- Watchers: 1
- Forks: 5
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# MMORPG just for fun
[ ![Codeship Status for kot13/gommo](https://app.codeship.com/projects/67bf45f0-2b34-0135-7e95-4afd89638027/status?branch=master)](https://app.codeship.com/projects/224028)
## Run
You need to install gvt before:
```
$ go get -u github.com/FiloSottile/gvt
```
Now:
```
$ gvt restore
$ go build
$ ./gommo -c config-local.toml
```
-c - flag for set path to config file. Default path - ./config.tomlType in browser:
```
localhost:8080
```## Embedded build
You need to install go.rice before:
```
$ go get github.com/GeertJohan/go.rice
$ go get github.com/GeertJohan/go.rice/rice
```
Now:
```
$ rice embed-go
$ go build
$ ./gommo -c config-local.toml
```Or:
```
$ rice embed-go && go build && ./gommo -c config-local.toml
```