Change default Postgres user/DB to akkoma
authorNorm <normandy@biribiri.dev>
Tue, 12 Jul 2022 16:41:30 +0000 (12:41 -0400)
committerNorm <normandy@biribiri.dev>
Tue, 12 Jul 2022 16:41:30 +0000 (12:41 -0400)
lib/mix/tasks/pleroma/instance.ex

index d98cb8e37cee1391212260c277df0f1d42364a65..03f72c27a5505a1859bdb798bb76be42f259a2cf 100644 (file)
@@ -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 =