forked from AkkomaGang/akkoma
Merge pull request 'Change default Postgres user/DB to akkoma' (#63) from norm/akkoma:default-db-name into develop
Reviewed-on: AkkomaGang/akkoma#63
This commit is contained in:
commit
7c1a2092ca
1 changed files with 2 additions and 2 deletions
|
@ -100,14 +100,14 @@ def run(["gen" | rest]) 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 =
|
||||
|
|
Loading…
Reference in a new issue