From: Steven Riehl Date: Mon, 14 Dec 2020 03:01:11 +0000 (-0700) Subject: Update the Readme's section on secrets.exs (#6) X-Git-Url: https://git.njae.me.uk/?a=commitdiff_plain;h=1553d7dc9dc5756a7085f6d3b6f2a77bc636cd14;p=advent-of-code-24-elixir.git Update the Readme's section on secrets.exs (#6) Added the `use Mix.Config` so everything loads correctly. --- diff --git a/README.md b/README.md index 97a4138..2f461c9 100644 --- a/README.md +++ b/README.md @@ -75,6 +75,8 @@ enable it. You can do this by creating a `config/secrets.exs` file containing the following: ```elixir +use Mix.Config + config :advent_of_code, AdventOfCode.Input, allow_network?: true, session_cookie: "..." # yours will be longer