Packages

Flowy framework project generator. Provides a `mix flowy.new` task to bootstrap a new Elixir application with Flowy dependencies.

Current section

Files

Jump to
flowy_new lib mix tasks local.phx.ex
Raw

lib/mix/tasks/local.phx.ex

defmodule Mix.Tasks.Local.Flowy do
use Mix.Task
@shortdoc "Updates the Flowy project generator locally"
@moduledoc """
Updates the Flowy project generator locally.
$ mix local.flowy
Accepts the same command line options as `archive.install hex flowy_new`.
"""
@impl true
def run(args) do
Mix.Task.run("archive.install", ["hex", "flowy_new" | args])
end
end