Change default Postgres user/DB to akkoma
ci/woodpecker/pr/release Pipeline was successful Details
ci/woodpecker/pr/lint Pipeline was successful Details
ci/woodpecker/pr/test Pipeline was successful Details

This commit is contained in:
Norm 2022-07-12 12:41:30 -04:00
parent fef48af31e
commit 7dfc3f3d0e
1 changed files with 2 additions and 2 deletions

View 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 =