Spaces:
Sleeping
Sleeping
| import Config | |
| # For development, we disable any cache and enable | |
| # debugging and code reloading. | |
| config :chai, ChaiWeb.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: 4040], | |
| check_origin: false, | |
| code_reloader: true, | |
| debug_errors: true, | |
| secret_key_base: "POQcb0mcoX3qbIKsRel3LlM4dvpDOssogUkyUN9Tyt4TPLgtQWKzDnjxxedUfcxC", | |
| watchers: [ | |
| esbuild: {Esbuild, :install_and_run, [:default, ~w(--sourcemap=inline --watch)]}, | |
| tailwind: {Tailwind, :install_and_run, [:default, ~w(--watch)]} | |
| ] | |
| # Watch static and templates for browser reloading. | |
| config :chai, ChaiWeb.Endpoint, | |
| live_reload: [ | |
| patterns: [ | |
| ~r"priv/static/.*(js|css|png|jpeg|jpg|gif|svg)$", | |
| ~r"lib/chai_web/(controllers|live|components)/.*(ex|heex)$" | |
| ] | |
| ] | |
| # Enable dev routes for dashboard and mailbox | |
| config :chai, dev_routes: true | |
| # Do not include metadata nor timestamps in development logs | |
| config :logger, :console, format: "[$level] $message\n" | |
| # Set a higher stacktrace during development. Avoid configuring such | |
| # in production as building large stacktraces may be expensive. | |
| config :phoenix, :stacktrace_depth, 20 | |
| # Initialize plugs at runtime for faster development compilation | |
| config :phoenix, :plug_init_mode, :runtime | |