https://github.com/marmelab/hex
Integration game: Hex
https://github.com/marmelab/hex
Last synced: about 2 months ago
JSON representation
Integration game: Hex
- Host: GitHub
- URL: https://github.com/marmelab/hex
- Owner: marmelab
- Created: 2022-02-04T09:34:52.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-03-17T14:58:35.000Z (about 3 years ago)
- Last Synced: 2024-04-13T02:08:36.989Z (about 1 year ago)
- Language: TypeScript
- Size: 846 KB
- Stars: 1
- Watchers: 7
- Forks: 3
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
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:5000Stop and remove the containers and volumes
```bash
$ make stop
```