Documentation updates for stable release (#73)
[akkoma] / lib / mix / tasks / pleroma / instance.ex
index d98cb8e37cee1391212260c277df0f1d42364a65..8954b3b7cf767ac2506a74114ec13b5cbeab6b5c 100644 (file)
@@ -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 =