46 lines
1.1 KiB
Elixir
46 lines
1.1 KiB
Elixir
|
import Config
|
||
|
|
||
|
config :slax,
|
||
|
ecto_repos: [Slax.Repo],
|
||
|
generators: [timestamp_type: :utc_datetime]
|
||
|
|
||
|
config :slax, SlaxWeb.Endpoint,
|
||
|
url: [host: "localhost"],
|
||
|
adapter: Bandit.PhoenixAdapter,
|
||
|
render_errors: [
|
||
|
formats: [html: SlaxWeb.ErrorHTML, json: SlaxWeb.ErrorJSON],
|
||
|
layout: false
|
||
|
],
|
||
|
pubsub_server: Slax.PubSub,
|
||
|
live_view: [signing_salt: "NVy/Rvtl"]
|
||
|
|
||
|
config :slax, Slax.Mailer, adapter: Swoosh.Adapters.Local
|
||
|
|
||
|
config :esbuild,
|
||
|
version: "0.17.11",
|
||
|
slax: [
|
||
|
args:
|
||
|
~w(js/app.js --bundle --target=es2017 --outdir=../priv/static/assets --external:/fonts/* --external:/images/*),
|
||
|
cd: Path.expand("../assets", __DIR__),
|
||
|
env: %{"NODE_PATH" => Path.expand("../deps", __DIR__)}
|
||
|
]
|
||
|
|
||
|
config :tailwind,
|
||
|
version: "3.4.3",
|
||
|
slax: [
|
||
|
args: ~w(
|
||
|
--config=tailwind.config.js
|
||
|
--input=css/app.css
|
||
|
--output=../priv/static/assets/app.css
|
||
|
),
|
||
|
cd: Path.expand("../assets", __DIR__)
|
||
|
]
|
||
|
|
||
|
config :logger, :console,
|
||
|
format: "$time $metadata[$level] $message\n",
|
||
|
metadata: [:request_id]
|
||
|
|
||
|
config :phoenix, :json_library, Jason
|
||
|
|
||
|
import_config "#{config_env()}.exs"
|