We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e2fe3be commit abada31Copy full SHA for abada31
1 file changed
lib/mix/tasks/desktop.install.ex
@@ -1,8 +1,32 @@
1
defmodule Mix.Tasks.Desktop.Install do
2
- @shortdoc "Add Elixir Desktop support to a project"
+ @shortdoc "Add Elixir Desktop support to an existing project"
3
4
@moduledoc """
5
#{@shortdoc}
6
+
7
+ This mix task adds the minimal glue to launch an Elixir Desktop
8
+ main window for your application.
9
10
+ To use this task, you'll either need to install Igniter globally, or
11
+ manually add the desktop dependency to your project's mix.exs:
12
13
+ ```
14
+ {:desktop, "~> 1.0"}
15
16
17
+ ## Examples
18
19
+ Add desktop support to a project:
20
21
+ ```bash
22
+ mix desktop.install
23
24
25
+ Create a new project with desktop support:
26
27
28
+ mix igniter.new --install desktop --with phx.new
29
30
"""
31
32
use Igniter.Mix.Task
0 commit comments