You've already forked algora-tv
mirror of
https://github.com/algora-io/tv.git
synced 2025-06-12 21:57:28 +02:00
45 lines
1.2 KiB
Elixir
45 lines
1.2 KiB
Elixir
defmodule AlgoraWeb.Embed.Endpoint do
|
|
use Phoenix.Endpoint, otp_app: :algora
|
|
|
|
socket "/socket", AlgoraWeb.UserSocket,
|
|
websocket: true,
|
|
longpoll: false
|
|
|
|
socket "/live", Phoenix.LiveView.Socket
|
|
|
|
# Serve at "/" the static files from "priv/static" directory.
|
|
#
|
|
# You should set gzip to true if you are running phx.digest
|
|
# when deploying your static files in production.
|
|
plug Plug.Static,
|
|
at: "/",
|
|
from: :algora,
|
|
gzip: false,
|
|
only: AlgoraWeb.static_paths()
|
|
|
|
# Code reloading can be explicitly enabled under the
|
|
# :code_reloader configuration of your endpoint.
|
|
if code_reloading? do
|
|
socket "/phoenix/live_reload/socket", Phoenix.LiveReloader.Socket
|
|
plug Phoenix.LiveReloader
|
|
plug Phoenix.CodeReloader
|
|
plug Phoenix.Ecto.CheckRepoStatus, otp_app: :algora
|
|
end
|
|
|
|
plug Phoenix.LiveDashboard.RequestLogger,
|
|
param_key: "request_logger",
|
|
cookie_key: "request_logger"
|
|
|
|
plug Plug.RequestId
|
|
plug Plug.Telemetry, event_prefix: [:phoenix, :endpoint]
|
|
|
|
plug Plug.Parsers,
|
|
parsers: [:urlencoded, :multipart, :json],
|
|
pass: ["*/*"],
|
|
json_decoder: Phoenix.json_library()
|
|
|
|
plug Plug.MethodOverride
|
|
plug Plug.Head
|
|
plug AlgoraWeb.Embed.Router
|
|
end
|