X-Git-Url: http://git.squeep.com/?a=blobdiff_plain;f=lib%2Fmix%2Ftasks%2Fpleroma%2Finstance.ex;h=8954b3b7cf767ac2506a74114ec13b5cbeab6b5c;hb=9deae8c533f1579f3491df41ab08697e9c6589b6;hp=d98cb8e37cee1391212260c277df0f1d42364a65;hpb=1ff9ffed83b098ebc0921e70c1636c6c1fb0b18c;p=akkoma diff --git a/lib/mix/tasks/pleroma/instance.ex b/lib/mix/tasks/pleroma/instance.ex index d98cb8e37..8954b3b7c 100644 --- a/lib/mix/tasks/pleroma/instance.ex +++ b/lib/mix/tasks/pleroma/instance.ex @@ -9,7 +9,7 @@ defmodule Mix.Tasks.Pleroma.Instance do alias Pleroma.Config @shortdoc "Manages Pleroma instance" - @moduledoc File.read!("docs/administration/CLI_tasks/instance.md") + @moduledoc File.read!("docs/docs/administration/CLI_tasks/instance.md") def run(["gen" | rest]) do {options, [], []} = @@ -100,14 +100,14 @@ defmodule Mix.Tasks.Pleroma.Instance do dbhost = get_option(options, :dbhost, "What is the hostname of your database?", "localhost") - dbname = get_option(options, :dbname, "What is the name of your database?", "pleroma") + dbname = get_option(options, :dbname, "What is the name of your database?", "akkoma") dbuser = get_option( options, :dbuser, "What is the user used to connect to your database?", - "pleroma" + "akkoma" ) dbpass =