Default DB configuration to false and set the default database name to
authorrinpatch <rinpatch@sdf.org>
Fri, 21 Jun 2019 03:42:04 +0000 (06:42 +0300)
committerrinpatch <rinpatch@sdf.org>
Fri, 21 Jun 2019 03:42:04 +0000 (06:42 +0300)
`pleroma` instead of `pleroma_dev`

lib/mix/tasks/pleroma/instance.ex

index 2c4e414cfa71ec3a4e2ce027ac99289304917872..9e26c066b3a5734f80db6a62ff82758f928c3bd4 100644 (file)
@@ -112,12 +112,12 @@ defmodule Mix.Tasks.Pleroma.Instance do
           options,
           :db_configurable,
           "Do you want to store the configuration in the database (allows controlling it from admin-fe)? (y/n)",
-          "y"
+          "n"
         ) === "y"
 
       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_dev")
+      dbname = get_option(options, :dbname, "What is the name of your database?", "pleroma")
 
       dbuser =
         get_option(