https://github.com/feliperenan/tictactoe
Tic tac toe game in Elixir
https://github.com/feliperenan/tictactoe
elixir elixir-game game hacktoberfest tictactoe-game
Last synced: 3 months ago
JSON representation
Tic tac toe game in Elixir
- Host: GitHub
- URL: https://github.com/feliperenan/tictactoe
- Owner: feliperenan
- Created: 2018-12-29T03:15:45.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2023-03-03T09:36:07.000Z (almost 3 years ago)
- Last Synced: 2023-03-10T01:21:39.777Z (almost 3 years ago)
- Topics: elixir, elixir-game, game, hacktoberfest, tictactoe-game
- Language: Elixir
- Homepage:
- Size: 28.2 MB
- Stars: 17
- Watchers: 1
- Forks: 2
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# TIC TAC TOE
This game is implemented in Elixir. The code is based on this [talk](https://speakerdeck.com/ventsislaf/building-multiplayer-real-time-game-with-elixir-and-phoenix).

This game is deployed on GigaElixir in case you want to check this out: https://frg-tictactoe.gigalixirapp.com/
## Setup
```bash
$ git clone git@github.com:feliperenan/tictactoe.git
$ cd tictactoe
$ mix deps.get
$ cd assets && npm install
$ cd .. && mix phx.server
```
Go to localhost:4000 and the game is going to be ready to play.