Deployment and lifecycle management for Nix
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

dev: add start-server for just the server

+13
+10
.iex-server.exs
··· 1 + Application.ensure_all_started([:sower]) 2 + 3 + IEx.configure( 4 + inspect: [ 5 + pretty: true, 6 + limit: 1000, 7 + width: 80 8 + ], 9 + width: 80 10 + )
+3
justfile
··· 90 90 start-agent: 91 91 iex --sname agent1 --dot-iex ./.iex-agent.exs -S mix run --no-start 92 92 93 + start-server: 94 + iex --sname server1 --dot-iex ./.iex-server.exs -S mix phx.server --no-start 95 + 93 96 start-pry: 94 97 iex --dbg pry -S mix phx.server 95 98