My Livebook project containing a talk on Ranch that I was asked to give to show how OTP constructs are used in the real world and expose some of Phoenix's underpinnings.
Go to file
Daniel Flanagan db2e7c4537
Ports?
2022-05-25 09:37:48 -05:00
lib Last minute changes 2022-03-02 10:24:47 -06:00
.formatter.exs Add talk timer 2022-02-11 12:05:42 -06:00
.gitignore Add talk timer 2022-02-11 12:05:42 -06:00
.tool-versions Add .tool-versions 2022-02-11 15:13:35 -06:00
Dockerfile Last minute changes 2022-03-02 10:24:47 -06:00
mix.exs Initial draft 2022-02-11 14:09:56 -06:00
mix.lock Initial draft 2022-02-11 14:09:56 -06:00
ranch-talk.livemd More changes 2022-03-02 10:49:36 -06:00
readme.md Ports? 2022-05-25 09:37:48 -05:00

readme.md

ranch-talk

🖥️ Upstream🐙 GitHub Mirror

I was asked to give a 5-15 minute talk on Ranch, a TCP socket acceptor pool writter in Erlang, to show how OTP constructs are used in the real world and expose some of Elixir's Phoenix's underpinnings. This Livebook contains my code and notes for that talk.

Thanks to Divvy for inviting me to give this talk.

Usage

asdf install
mix escript.install github livebook-dev/livebook
git clone https://git.lyte.dev/lytedev/ranch-talk.git
cd ranch-talk
mix do deps.get, compile

Install and run a local Livebook in attached mode and automatically grab my code:

env LIVEBOOK_PORT=5560 LIVEBOOK_IFRAME_PORT=5561 \
  LIVEBOOK_HOME=(pwd) LIVEBOOK_IP=0.0.0.0 \
  livebook server --default-runtime mix --no-token

Or if you're gonna share this with everybody, it's probably safer to run it inside of Docker:

docker build . --tag ranch-talk
docker run -it --rm -p 5588:5588 -p 5589:5589 ranch-talk

Enjoy!