Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/ranisputnik/lovedist
- Owner: RaniSputnik
- Created: 2017-01-22T03:01:24.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2019-11-24T17:43:41.000Z (about 5 years ago)
- Last Synced: 2024-12-06T20:05:02.876Z (about 2 months ago)
- Topics: build-tool, love2d
- Language: C
- Size: 13.2 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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 ./...
```