Current section

Files

Jump to
phx_new templates phx_umbrella apps app_name_web config config.exs.eex
Raw

templates/phx_umbrella/apps/app_name_web/config/config.exs.eex

import Config
<%= if @namespaced? || @ecto || @generators do %>
config :<%= @web_app_name %><%= if @namespaced? do %>,
namespace: <%= @web_namespace %><% end %><%= if @ecto do %>,
ecto_repos: [<%= @app_module %>.Repo]<% end %><%= if @generators do %>,
generators: <%= inspect @generators %><% end %>
<% end %># Configures the endpoint
config :<%= @web_app_name %>, <%= @endpoint_module %>,
url: [host: "localhost"],
adapter: <%= inspect @web_adapter_module %>,
render_errors: [
formats: [<%= if @html do%>html: <%= @web_namespace %>.ErrorHTML, <% end %>json: <%= @web_namespace %>.ErrorJSON],
layout: false
],
pubsub_server: <%= @app_module %>.PubSub,
live_view: [signing_salt: "<%= @lv_signing_salt %>"]<%= if @javascript do %>
# Configure esbuild (the version is required)
config :esbuild,
version: "0.25.4",
<%= @web_app_name %>: [
args:
~w(js/app.js --bundle --target=es2022 --outdir=../priv/static/assets/js --external:/fonts/* --external:/images/* --alias:@=.),
cd: Path.expand("../apps/<%= @web_app_name %>/assets", __DIR__),
env: %{"NODE_PATH" => [Path.expand("../deps", __DIR__), Mix.Project.build_path()]}
]<% end %><%= if @css do %>
# Configure tailwind (the version is required)
config :tailwind,
version: "4.1.12",
<%= @web_app_name %>: [
args: ~w(
--input=assets/css/app.css
--output=priv/static/assets/css/app.css
),
cd: Path.expand("../apps/<%= @web_app_name %>", __DIR__)
]<% end %>