https://github.com/battermann/tic-tac-toe-backend
Source code for blog post on the free monad in F#
https://github.com/battermann/tic-tac-toe-backend
Last synced: about 1 year ago
JSON representation
Source code for blog post on the free monad in F#
- Host: GitHub
- URL: https://github.com/battermann/tic-tac-toe-backend
- Owner: battermann
- Created: 2016-12-19T23:05:22.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2023-02-20T06:12:14.000Z (over 3 years ago)
- Last Synced: 2025-06-14T09:05:04.103Z (about 1 year ago)
- Language: F#
- Homepage: http://blog.leifbattermann.de/2016/12/25/purity-in-an-impure-language-free-monad-tic-tac-toe-cqrs-event-souring/
- Size: 61.5 KB
- Stars: 18
- Watchers: 3
- Forks: 4
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Tic-Tac-Toe Backend
## Create Docker image
```bash
docker build -t tictactoe .
```
## Run Docker
```bash
docker run -d -p 5000:5000 -e PORT=5000 tictactoe
```