forked from AkkomaGang/akkoma
Default DB configuration to false and set the default database name to
`pleroma` instead of `pleroma_dev`
This commit is contained in:
parent
d55358f370
commit
89fead9250
1 changed files with 2 additions and 2 deletions
|
@ -112,12 +112,12 @@ def run(["gen" | rest]) do
|
||||||
options,
|
options,
|
||||||
:db_configurable,
|
:db_configurable,
|
||||||
"Do you want to store the configuration in the database (allows controlling it from admin-fe)? (y/n)",
|
"Do you want to store the configuration in the database (allows controlling it from admin-fe)? (y/n)",
|
||||||
"y"
|
"n"
|
||||||
) === "y"
|
) === "y"
|
||||||
|
|
||||||
dbhost = get_option(options, :dbhost, "What is the hostname of your database?", "localhost")
|
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 =
|
dbuser =
|
||||||
get_option(
|
get_option(
|
||||||
|
|
Loading…
Reference in a new issue