suggest using stable frontends
This commit is contained in:
parent
4c007efa9b
commit
03fcf225e9
3 changed files with 9 additions and 8 deletions
|
@ -718,7 +718,8 @@
|
||||||
# available: %{...}
|
# available: %{...}
|
||||||
|
|
||||||
config :pleroma, :frontends,
|
config :pleroma, :frontends,
|
||||||
primary: %{"name" => "pleroma-fe", "ref" => "develop"},
|
primary: %{"name" => "pleroma-fe", "ref" => "stable"},
|
||||||
|
admin: %{"name" => "admin-fe", "ref" => "stable"},
|
||||||
swagger: %{
|
swagger: %{
|
||||||
"name" => "swagger-ui",
|
"name" => "swagger-ui",
|
||||||
"ref" => "stable",
|
"ref" => "stable",
|
||||||
|
@ -728,8 +729,8 @@
|
||||||
"pleroma-fe" => %{
|
"pleroma-fe" => %{
|
||||||
"name" => "pleroma-fe",
|
"name" => "pleroma-fe",
|
||||||
"git" => "https://akkoma.dev/AkkomaGang/pleroma-fe",
|
"git" => "https://akkoma.dev/AkkomaGang/pleroma-fe",
|
||||||
"build_url" => "https://akkoma-updates.s3-website.fr-par.scw.cloud/frontend/akkoma-fe.zip",
|
"build_url" => "https://akkoma-updates.s3-website.fr-par.scw.cloud/frontend/${ref}/akkoma-fe.zip",
|
||||||
"ref" => "develop",
|
"ref" => "stable",
|
||||||
"build_dir" => "dist"
|
"build_dir" => "dist"
|
||||||
},
|
},
|
||||||
# Mastodon-Fe cannot be set as a primary - this is only here so we can update this seperately
|
# Mastodon-Fe cannot be set as a primary - this is only here so we can update this seperately
|
||||||
|
@ -743,8 +744,8 @@
|
||||||
"admin-fe" => %{
|
"admin-fe" => %{
|
||||||
"name" => "admin-fe",
|
"name" => "admin-fe",
|
||||||
"git" => "https://akkoma.dev/AkkomaGang/admin-fe",
|
"git" => "https://akkoma.dev/AkkomaGang/admin-fe",
|
||||||
"build_url" => "https://akkoma-updates.s3-website.fr-par.scw.cloud/frontend/admin-fe.zip",
|
"build_url" => "https://akkoma-updates.s3-website.fr-par.scw.cloud/frontend/${ref}/admin-fe.zip",
|
||||||
"ref" => "develop"
|
"ref" => "stable"
|
||||||
},
|
},
|
||||||
"soapbox-fe" => %{
|
"soapbox-fe" => %{
|
||||||
"name" => "soapbox-fe",
|
"name" => "soapbox-fe",
|
||||||
|
|
|
@ -8,7 +8,7 @@ Besides that, doing the following is generally enough:
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
# Download the new release
|
# Download the new release
|
||||||
su akkoma -s $SHELL -lc "./bin/pleroma_ctl update --branch develop"
|
su akkoma -s $SHELL -lc "./bin/pleroma_ctl update"
|
||||||
|
|
||||||
# Migrate the database, you are advised to stop the instance before doing that
|
# Migrate the database, you are advised to stop the instance before doing that
|
||||||
su akkoma -s $SHELL -lc "./bin/pleroma_ctl migrate"
|
su akkoma -s $SHELL -lc "./bin/pleroma_ctl migrate"
|
||||||
|
|
|
@ -14,11 +14,11 @@ Example:
|
||||||
config :pleroma, :frontends,
|
config :pleroma, :frontends,
|
||||||
primary: %{
|
primary: %{
|
||||||
"name" => "pleroma-fe",
|
"name" => "pleroma-fe",
|
||||||
"ref" => "develop"
|
"ref" => "stable"
|
||||||
},
|
},
|
||||||
admin: %{
|
admin: %{
|
||||||
"name" => "admin-fe",
|
"name" => "admin-fe",
|
||||||
"ref" => "develop"
|
"ref" => "stable"
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue