Benchmark config: Database adjustments.
This commit is contained in:
parent
c54ae662dc
commit
2629493804
|
@ -37,16 +37,11 @@
|
||||||
# Configure your database
|
# Configure your database
|
||||||
config :pleroma, Pleroma.Repo,
|
config :pleroma, Pleroma.Repo,
|
||||||
adapter: Ecto.Adapters.Postgres,
|
adapter: Ecto.Adapters.Postgres,
|
||||||
username: System.get_env("DB_USER") || "postgres",
|
username: "postgres",
|
||||||
database: System.get_env("DB_DATABASE") || "pleroma_test",
|
password: "postgres",
|
||||||
|
database: "pleroma_test",
|
||||||
hostname: System.get_env("DB_HOST") || "localhost",
|
hostname: System.get_env("DB_HOST") || "localhost",
|
||||||
# username: "pleroma",
|
pool: Ecto.Adapters.SQL.Sandbox
|
||||||
password:
|
|
||||||
System.get_env("DB_PASS") ||
|
|
||||||
"cAUrGezwXjRwd/lIPzZAcwjb/hiZiGi3FIaSGy9l/XsTcGA61FMy7eCBiRcg1DyQ",
|
|
||||||
# password: "",
|
|
||||||
pool_size: 10,
|
|
||||||
timeout: 180_000
|
|
||||||
|
|
||||||
# Reduce hash rounds for testing
|
# Reduce hash rounds for testing
|
||||||
config :pbkdf2_elixir, rounds: 1
|
config :pbkdf2_elixir, rounds: 1
|
||||||
|
|
Loading…
Reference in New Issue