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

https://github.com/marmelab/hex

Integration game: Hex
https://github.com/marmelab/hex

Last synced: about 2 months ago
JSON representation

Integration game: Hex

Awesome Lists containing this project

README

        

# The Hex Game

Play the game of Hex (or Con-Tac-Tix) ([game presentation](), [rules](https://www.hasbro.com/common/instruct/Con-Tac-Tix.PDF)).

This repo consists of 2 main parts:

- A web application, also hosting the API and a terminal-based version of the game - See the [README](web-app/README.md)
- A mobile application, client to the API - See the [README](mobile-app/README.md)

## Prerequisites

- Make
- Docker & Docker Compose

## Running the app

Configure the project for first launch

```bash
$ make init
```

Start the apps in dev mode (using docker-compose)

```bash
$ make start
```

- Web app runs on http://localhost:3000
- Admin interface runs on http://localhost:5000

Stop and remove the containers and volumes

```bash
$ make stop
```