You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Elixir Scribe - A Mix Task to Generate Elixir and Phoenix Projects
11
+
12
+
The Elixir Scribe tool aims to help developers to more easily write clean code in a clean software architecture for enhanced developer experience and productivity.
13
+
"""
14
+
4
15
defprojectdo
5
16
[
6
17
app: :elixir_scribe,
18
+
name: "Elixir Scribe",
7
19
version: "0.1.0",
8
-
elixir: "~> 1.16",
20
+
elixir: @elixir_requirement,
9
21
start_permanent: Mix.env()==:prod,
22
+
homepage_url: @scm_url,
23
+
source_url: @scm_url,
24
+
description: @description,
25
+
package: package(),
10
26
deps: deps()
11
27
]
12
28
end
@@ -18,6 +34,16 @@ defmodule ElixirScribe.MixProject do
0 commit comments