Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/ranisputnik/lovedist

Tool for building Love 2d games for distribution
https://github.com/ranisputnik/lovedist

build-tool love2d

Last synced: 1 day ago
JSON representation

Tool for building Love 2d games for distribution

Awesome Lists containing this project

README

        

[![Go Report Card](https://goreportcard.com/badge/RaniSputnik/lovedist)](https://goreportcard.com/report/RaniSputnik/lovedist)

# lovedist

A tool for building Love 2d games for distribution. Following the instructions [here](https://love2d.org/wiki/Game_Distribution).

### Running the server

With [Docker](https://www.docker.com/) installed;

```
$ docker build -t lovedist .
$ docker run -p 8080:8080 lovedist
```

With [go](https://golang.org) installed;

```
$ go run *.go
```

### Tests

To run the tests use;

```
$ go test ./...
```