1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2022 Pleroma Authors <https://pleroma.social/>
3 # SPDX-License-Identifier: AGPL-3.0-only
5 defmodule Mix.Tasks.Pleroma.Frontend do
10 @shortdoc "Manages bundled Pleroma frontends"
12 @moduledoc File.read!("docs/administration/CLI_tasks/frontend.md")
14 def run(["install", "none" | _args]) do
15 shell_info("Skipping frontend installation because none was requested")
19 def run(["install", frontend | args]) do
34 Pleroma.Frontend.install(frontend, options)