a small incremental UI library for the web
javascript web ui
1
fork

Configure Feed

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

Add application

garrison c5bf9a8e 18c83be5

+19
+9
lib/noir/application.ex
··· 1 + defmodule Noir.Application do 2 + use Application 3 + 4 + def start(_type, _args) do 5 + children = [ 6 + ] 7 + Supervisor.start_link(children, strategy: :one_for_one) 8 + end 9 + end
+9
lib/noir/dev_server.ex
··· 1 + defmodule Noir.DevServer do 2 + def init(options) do 3 + options 4 + end 5 + 6 + def call(conn, _opts) do 7 + conn 8 + end 9 + end
+1
mix.exs
··· 14 14 # Run "mix help compile.app" to learn about applications. 15 15 def application do 16 16 [ 17 + mod: {Noir.Application, []}, 17 18 extra_applications: [:logger], 18 19 ] 19 20 end