my personal website pdewey.com
0

Configure Feed

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

website / mix.exs
687 B 32 lines
1defmodule Site.MixProject do 2 use Mix.Project 3 4 def project do 5 [ 6 app: :site, 7 version: "0.1.0", 8 elixir: "~> 1.18", 9 start_permanent: Mix.env() == :prod, 10 deps: deps() 11 ] 12 end 13 14 # Run "mix help compile.app" to learn about applications. 15 def application do 16 [ 17 extra_applications: [:logger] 18 ] 19 end 20 21 # Run "mix help deps" to learn about dependencies. 22 defp deps do 23 [ 24 {:nimble_publisher, "~> 1.0", runtime: false}, 25 {:phoenix_live_view, "~> 1.1"}, 26 {:mdex, "~> 0.11"}, 27 {:yaml_elixir, "~> 2.12"}, 28 {:jason, "~> 1.4"}, 29 {:atex, git: "https://tangled.org/comet.sh/atex", branch: "main"} 30 ] 31 end 32end