diff options
author | lain <lain@soykaf.club> | 2020-07-30 14:17:58 +0200 |
---|---|---|
committer | lain <lain@soykaf.club> | 2020-07-30 14:17:58 +0200 |
commit | 99bfdffb1dfa283d1d039c8d46b7da095876197d (patch) | |
tree | 92731f1a326d461a90041f79555510a72553f534 | |
parent | 4ce4d799fd9fa5ab4fde6c6aa55bf8b516d64c12 (diff) | |
download | pleroma-99bfdffb1dfa283d1d039c8d46b7da095876197d.tar.gz pleroma-99bfdffb1dfa283d1d039c8d46b7da095876197d.zip |
Config: Add kenoma as available frontend.
-rw-r--r-- | config/config.exs | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/config/config.exs b/config/config.exs index bf24d1bd9..82be82747 100644 --- a/config/config.exs +++ b/config/config.exs @@ -656,14 +656,21 @@ config :pleroma, :static_fe, enabled: false # be used. # # config :pleroma, :frontends, -# primary: %{"name" => "pleroma", "ref" => "develop"}, -# admin: %{"name" => "admin", "ref" => "stable"}, +# primary: %{"name" => "pleroma-fe", "ref" => "develop"}, +# admin: %{"name" => "admin-fe", "ref" => "stable"}, # available: %{...} config :pleroma, :frontends, available: %{ - "pleroma" => %{ - "name" => "pleroma", + "kenoma" => %{ + "name" => "kenoma", + "git" => "https://git.pleroma.social/lambadalambda/kenoma", + "build_url" => + "https://git.pleroma.social/lambadalambda/kenoma/-/jobs/artifacts/${ref}/download?job=build", + "ref" => "master" + }, + "pleroma-fe" => %{ + "name" => "pleroma-fe", "git" => "https://git.pleroma.social/pleroma/pleroma-fe", "build_url" => "https://git.pleroma.social/pleroma/pleroma-fe/-/jobs/artifacts/${ref}/download?job=build", |