https://github.com/phxql/restwars-kotlin
A browser-game style game, playable via a REST interface
https://github.com/phxql/restwars-kotlin
Last synced: 21 days ago
JSON representation
A browser-game style game, playable via a REST interface
- Host: GitHub
- URL: https://github.com/phxql/restwars-kotlin
- Owner: phxql
- Created: 2017-11-04T09:12:51.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2019-11-02T23:11:23.000Z (over 6 years ago)
- Last Synced: 2025-10-28T04:24:59.100Z (9 months ago)
- Language: Kotlin
- Size: 549 KB
- Stars: 1
- Watchers: 0
- Forks: 1
- Open Issues: 23
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# RESTwars
* [Server Changelog](server/CHANGELOG.md)
## Running
1. `./gradlew clean run`
1. Open browser at [http://localhost:7777/v1/restwars](http://localhost:7777/v1/restwars)
## Building the documentation
1. Install `asciidoc`
1. `cd doc/`
1. `asciidoc Webservice.adoc && asciidoc RESTwars.adoc`
1. Open `RESTwars.html` and `Webservice.html` in browser
## Building a distribution
1. Run `./gradlew clean build distTar`
1. Check `build/distributions/`
## Run with docker
1. `docker run -itp 7777:7777 docker.io/phxql/restwars`
1. Open browser at [http://localhost:7777/v1/restwars](http://localhost:7777/v1/restwars)