Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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.toml

Type 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
```