import Config # Configure your database config :aprs, Aprs.Repo, # For development, we disable any cache and enable # debugging and code reloading. # # The watchers configuration can be used to run external # watchers to your application. For example, we use it # with esbuild to bundle .js and .css sources. username: "postgres", password: "postgres", hostname: "localhost", database: "aprs_dev", stacktrace: true, show_sensitive_data_on_connection_error: true, pool_size: 10, types: Aprs.PostgresTypes config :aprs, AprsWeb.Endpoint, # Binding to loopback ipv4 address prevents access from other machines. # Change to `ip: {0, 0, 0, 0}` to allow access from other machines. http: [ip: {127, 0, 0, 1}, port: 4000], check_origin: false, code_reloader: true, debug_errors: true, secret_key_base: "Vv8Uh9w7tSoac1wBo7A8MyTSE9J+RzNeAzPTGcsW2InUBHpPBgt1dACJrIZorfdH", watchers: [ esbuild: {Esbuild, :install_and_run, [ :default, ~w(--sourcemap=inline --watch --loader:.ts=ts) ]}, tailwind: {Tailwind, :install_and_run, [:default, ~w(--watch)]} ] # Watch static and templates for browser reloading. config :aprs, AprsWeb.Endpoint, live_reload: [ patterns: [ ~r"priv/static/.*(js|css|png|jpeg|jpg|gif|svg)$", ~r"priv/gettext/.*(po)$", ~r"lib/aprs_web/(live|views)/.*(ex)$", ~r"lib/aprs_web/templates/.*(eex)$", ~r"assets/vendor/.*(js|css)$" ] ] # Enable dev routes for dashboard and mailbox # # mix phx.gen.cert # # Run `mix help phx.gen.cert` for more information. config :aprs, dev_routes: true # Do not include metadata nor timestamps in development logs # # The `http:` config above can be replaced with: # # https: [ config :logger, :console, format: "[$level] $message\n" # Initialize plugs at runtime for faster development compilation # port: 4001, # cipher_suite: :strong, # keyfile: "priv/cert/selfsigned_key.pem", config :phoenix, :plug_init_mode, :runtime # Set a higher stacktrace during development. Avoid configuring such # certfile: "priv/cert/selfsigned.pem" # in production as building large stacktraces may be expensive. # ], # # If desired, both `http:` and `https:` keys can be # configured to run both http and https servers on config :phoenix, :stacktrace_depth, 20 # Disable swoosh api client as it is only required for production adapters. # different ports. config :swoosh, :api_client, false