mirror of
https://github.com/teslamate-org/teslamate.git
synced 2026-01-24 21:06:08 +08:00
23 lines
520 B
Elixir
23 lines
520 B
Elixir
import Config
|
|
|
|
# We don't run a server during test. If one is required,
|
|
# you can enable the server option below.
|
|
config :teslamate, TeslaMateWeb.Endpoint,
|
|
http: [port: 4002],
|
|
server: false
|
|
|
|
config :logger, level: :warn
|
|
|
|
config :teslamate, TeslaMate.Repo,
|
|
username: "postgres",
|
|
password: "postgres",
|
|
database: "teslamate_test",
|
|
hostname: "localhost",
|
|
pool: Ecto.Adapters.SQL.Sandbox
|
|
|
|
config :teslamate, :tesla_auth,
|
|
username: "admin",
|
|
password: "admin"
|
|
|
|
config :teslamate, :srtm_cache, "./.srtm_cache"
|