import Config # For development, we disable any cache and enable # debugging and code reloading. config :soft_pos_app, SoftPosAppWeb.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: {0, 0, 0, 0}, port: 4066], check_origin: false, code_reloader: true, debug_errors: true, secret_key_base: "soft_pos_dev_secret_key_base_change_in_production_min_64_chars_long_string" # Enable dev routes for dashboard config :soft_pos_app, 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 config :phoenix, :stacktrace_depth, 20 # Initialize plugs at runtime for faster development compilation config :phoenix, :plug_init_mode, :runtime