Add since_id for activitypub fetching.
[akkoma] / config / test.exs
1 use Mix.Config
2
3 # We don't run a server during test. If one is required,
4 # you can enable the server option below.
5 config :pleroma, Pleroma.Web.Endpoint,
6 http: [port: 4001],
7 server: false
8
9 # Print only warnings and errors during test
10 config :logger, level: :warn
11
12 # Configure your database
13 config :pleroma, Pleroma.Repo,
14 adapter: Ecto.Adapters.Postgres,
15 username: "postgres",
16 password: "postgres",
17 database: "pleroma_test",
18 hostname: "localhost",
19 pool: Ecto.Adapters.SQL.Sandbox
20
21
22 # Reduce hash rounds for testing
23 config :comeonin, :pbkdf2_rounds, 1