live_beats/config/config.exs

58 lines
1.6 KiB
Elixir
Raw Normal View History

2021-09-02 18:00:57 +00:00
# This file is responsible for configuring your application
# and its dependencies with the aid of the Config module.
#
# This configuration file is loaded before any dependency and
# is restricted to this project.
# General application configuration
import Config
config :live_beats,
2022-01-28 01:42:26 +00:00
replica: LiveBeats.ReplicaRepo,
2021-09-02 18:00:57 +00:00
ecto_repos: [LiveBeats.Repo]
2022-08-03 13:40:11 +00:00
config :live_beats, :files, admin_usernames: []
2022-03-04 19:57:06 +00:00
2021-09-02 18:00:57 +00:00
# Configures the endpoint
config :live_beats, LiveBeatsWeb.Endpoint,
url: [host: "localhost"],
secret_key_base: "55naB2xjgnsDeN+kKz7xoeqx3vIPcpCkAmg+CoVR/F7iZ5MQgNE6ykiNXoFa7wcC",
pubsub_server: LiveBeats.PubSub,
2022-11-17 15:01:20 +00:00
live_view: [signing_salt: "OHBVr+w4"],
render_errors: [
formats: [html: LiveBeatsWeb.ErrorHTML, json: LiveBeatsWeb.ErrorJSON],
layout: false
]
2021-09-02 18:00:57 +00:00
2022-11-17 15:01:20 +00:00
config :esbuild,
version: "0.12.18",
default: [
args: ~w(js/app.js --bundle --target=es2016 --outdir=../priv/static/assets),
cd: Path.expand("../assets", __DIR__),
env: %{"NODE_PATH" => Path.expand("../deps", __DIR__)}
]
2021-09-02 18:00:57 +00:00
2022-11-17 15:01:20 +00:00
# Configure tailwind (the version is required)
2022-01-07 18:42:04 +00:00
config :tailwind,
2022-11-17 15:01:20 +00:00
version: "3.1.8",
2022-01-07 18:42:04 +00:00
default: [
args: ~w(
--config=tailwind.config.js
--input=css/app.css
--output=../priv/static/assets/app.css
),
cd: Path.expand("../assets", __DIR__)
]
2021-09-02 18:00:57 +00:00
# Configures Elixir's Logger
config :logger, :console,
format: "$time $metadata[$level] $message\n",
metadata: [:request_id]
# Use Jason for JSON parsing in Phoenix
config :phoenix, :json_library, Jason
# Import environment specific config. This must remain at the bottom
# of this file so it overrides the configuration defined above.
import_config "#{config_env()}.exs"