1
0
mirror of https://github.com/algora-io/tv.git synced 2024-11-16 00:58:59 +02:00
algora-tv/config/config.exs
ty 4d2a5455d6
Validate stream_key inside Pipeline (#98)
Allows using /live + <stream_key> or /<stream-key> or /<stream-key> +
<stream_key>, but no other combination

Moves all post-connection logic out of the Validator and into the
Pipeline

Delays calling init_livestream! until the stream is validated

Removes video_id from Validator config

Delays attaching HLS output until the stream is validated

User interface for stream key
2024-09-19 15:35:22 +03:00

78 lines
2.3 KiB
Elixir

# 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 :algora,
title: "Algora TV",
description:
"Algora TV is an interactive livestreaming & video sharing service for developers.",
admin_emails: ["zafer@algora.io", "ioannis@algora.io"],
ecto_repos: [Algora.Repo.Local],
rtmp_port: 9006,
rtmp_path: "live"
# Configures the endpoint
config :algora, AlgoraWeb.Endpoint,
url: [host: "localhost"],
secret_key_base: "H04mI/fsBvjCX3HO+P2bxFEM7PG3SaGTV+DE1f/BbTVG9oiOXSXsq+3tjDXxRXSe",
pubsub_server: Algora.PubSub,
live_view: [signing_salt: "fMm4VTD0Mkn/AB41KV+GwgofkocpAGOf"],
render_errors: [
formats: [html: AlgoraWeb.ErrorHTML, json: AlgoraWeb.ErrorJSON],
layout: false
]
config :algora, AlgoraWeb.Embed.Endpoint,
url: [host: "localhost"],
secret_key_base: "H04mI/fsBvjCX3HO+P2bxFEM7PG3SaGTV+DE1f/BbTVG9oiOXSXsq+3tjDXxRXSe",
pubsub_server: Algora.PubSub,
live_view: [signing_salt: "fMm4VTD0Mkn/AB41KV+GwgofkocpAGOf"],
render_errors: [
formats: [html: AlgoraWeb.ErrorHTML, json: AlgoraWeb.ErrorJSON],
layout: false
]
config :algora, Oban,
repo: Algora.Repo.Local,
queues: [default: 10]
config :esbuild,
version: "0.17.11",
tv: [
args:
~w(js/app.ts --bundle --target=es2017 --outdir=../priv/static/assets --external:/fonts/* --external:/images/*),
cd: Path.expand("../assets", __DIR__),
env: %{"NODE_PATH" => Path.expand("../deps", __DIR__)}
]
# Configure tailwind (the version is required)
config :tailwind,
version: "3.4.0",
tv: [
args: ~w(
--config=tailwind.config.js
--input=css/app.css
--output=../priv/static/assets/app.css
),
cd: Path.expand("../assets", __DIR__)
]
# 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
config :nx, default_backend: EXLA.Backend
# 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"