This commit is contained in:
Mayel de Borniol 2023-07-23 16:20:02 +01:00
parent cff48413ba
commit 95c398f207
4 changed files with 9 additions and 9 deletions

View file

@ -18,7 +18,6 @@ hosts =
|> String.replace(["`", " "], "")
|> String.split(",")
|> Enum.map(&"//#{&1}")
# |> IO.inspect()
# [Bonfire.Common.Repo, Beacon.Repo]
@ -147,7 +146,8 @@ config :bonfire, Bonfire.Web.Endpoint,
host: host,
port: public_port
],
check_origin: hosts,
#check_origin: hosts, # FIXME
check_origin: false,
http: [
port: server_port,
transport_options:

View file

@ -281,13 +281,13 @@ update-forks-all cmd='pull':
just update-fork-path $EXTRA_FORKS_PATH $cmd
# Pull the latest commits from all forks
update-fork dep cmd='pull':
just update-fork-path $EXT_PATH/$dep $cmd
just update-fork-path $EXTRA_FORKS_PATH/$dep $cmd
update-fork dep cmd='pull' mindepth='0' maxdepth='0':
-just update-fork-path $EXT_PATH/$dep $cmd $mindepth $maxdepth
-just update-fork-path $EXTRA_FORKS_PATH/$dep $cmd $mindepth $maxdepth
update-fork-path path cmd='pull':
update-fork-path path cmd='pull' mindepth='0' maxdepth='1':
@chmod +x git-publish.sh
find $path -mindepth 0 -maxdepth 1 -type d -exec ./git-publish.sh {} $cmd \;
find $path -mindepth $mindepth -maxdepth $maxdepth -type d -exec ./git-publish.sh {} $cmd \;
# Fetch locked version of non-forked deps
deps-get *args='':

View file

@ -88,7 +88,7 @@ defmodule Bonfire.Umbrella.MixProject do
@default_flavour "classic"
@config [
# note that the flavour will automatically be added where the dash appears
version: "0.9.5-beta.7",
version: "0.9.5-beta.8",
elixir: "~> #{System.get_env("ELIXIR_VERSION", "1.14")}",
default_flavour: @default_flavour,
logo: "assets/static/images/bonfire-icon.png",

View file

@ -51,7 +51,7 @@
"bonfire_search": {:git, "https://github.com/bonfire-networks/bonfire_search", "55b008cfa10b5cbf22eee52ed5f4c6c997966876", [branch: "main"]},
"bonfire_social": {:git, "https://github.com/bonfire-networks/bonfire_social", "ffa49671a717883f021107a0f74ce1b59e56b3ed", [branch: "main"]},
"bonfire_tag": {:git, "https://github.com/bonfire-networks/bonfire_tag", "c140276e2a970fc16828979587a34c271847e5c1", [branch: "main"]},
"bonfire_ui_common": {:git, "https://github.com/bonfire-networks/bonfire_ui_common", "a51813c1ff25d6024ba2bfdfb062acb720475ca1", [branch: "main"]},
"bonfire_ui_common": {:git, "https://github.com/bonfire-networks/bonfire_ui_common", "2f04dead07b5ce54bd4551e440b8207607f9510b", [branch: "main"]},
"bonfire_ui_coordination": {:git, "https://github.com/bonfire-networks/bonfire_ui_coordination", "174d7561bde317d6c09898a079a0446b999d2a21", [branch: "main"]},
"bonfire_ui_groups": {:git, "https://github.com/bonfire-networks/bonfire_ui_groups", "3237b87e8ac13807e1b07ce3e0f71d2b0e711b56", [branch: "main"]},
"bonfire_ui_kanban": {:git, "https://github.com/bonfire-networks/bonfire_ui_kanban", "1776211111cc5873831abe5bef8d50444a6ef97f", [branch: "main"]},