https://github.com/chrislaskey/islands
Functional Web Development with Elixir, OTP, and Phoenix
https://github.com/chrislaskey/islands
elixir otp phoenix-framework
Last synced: 29 days ago
JSON representation
Functional Web Development with Elixir, OTP, and Phoenix
- Host: GitHub
- URL: https://github.com/chrislaskey/islands
- Owner: chrislaskey
- Created: 2017-06-25T16:54:35.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-06-25T16:56:49.000Z (about 9 years ago)
- Last Synced: 2025-03-09T23:44:54.078Z (over 1 year ago)
- Topics: elixir, otp, phoenix-framework
- Language: Elixir
- Size: 2.93 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Islands
> Web Application for Islands, a variation on battleship
Repository contains code from working through [Functional Web Development with Elixir, OTP, and Phoenix](https://pragprog.com/book/lhelph/functional-web-development-with-elixir-otp-and-phoenix) by Pragmatic Programmers.
## Initial Setup
Create the business logic:
```
mix new --sup islands_engine
```
**Note**: The `--sup` flag generates an OTP skeleton with a supervision tree. See the [Mix Documentation](https://hexdocs.pm/mix/Mix.Tasks.New.html) for all available flags.