forked from AkkomaGang/akkoma
update fe
This commit is contained in:
parent
1f1c7363df
commit
6ac2822c73
13 changed files with 2 additions and 241 deletions
|
@ -1 +1 @@
|
||||||
<!DOCTYPE html><html lang=en><head><meta charset=utf-8><meta name=viewport content="width=device-width,initial-scale=1,user-scalable=no"><title>Pleroma</title><link rel=stylesheet href=/static/font/css/fontello.css><link rel=stylesheet href=/static/font/css/animation.css><link rel=stylesheet href=/static/font/tiresias.css><link rel=stylesheet href=/static/font/css/lato.css><link rel=stylesheet href=/static/mfm.css><!--server-generated-meta--><link rel=icon type=image/png href=/favicon.png><link href=/static/css/app.ab6cb01d5b0b782e7457.css rel=stylesheet></head><body class=hidden><noscript>To use Pleroma, please enable JavaScript.</noscript><div id=app></div><script type=text/javascript src=/static/js/vendors~app.be2014390281e934ebf1.js></script><script type=text/javascript src=/static/js/app.e8949b9a3c7cfdab2e4c.js></script></body></html>
|
<!DOCTYPE html><html lang=en><head><meta charset=utf-8><meta name=viewport content="width=device-width,initial-scale=1,user-scalable=no"><title>Pleroma</title><link rel=stylesheet href=/static/font/css/fontello.css><link rel=stylesheet href=/static/font/css/animation.css><link rel=stylesheet href=/static/font/tiresias.css><link rel=stylesheet href=/static/font/css/lato.css><link rel=stylesheet href=/static/mfm.css><!--server-generated-meta--><link rel=icon type=image/png href=/favicon.png><link href=/static/css/app.ff49eba8c60fb923a345.css rel=stylesheet></head><body class=hidden><noscript>To use Pleroma, please enable JavaScript.</noscript><div id=app></div><script type=text/javascript src=/static/js/vendors~app.be2014390281e934ebf1.js></script><script type=text/javascript src=/static/js/app.ac6a5ffb0464738cd624.js></script></body></html>
|
File diff suppressed because one or more lines are too long
Binary file not shown.
1
priv/static/static/css/app.ff49eba8c60fb923a345.css.map
Normal file
1
priv/static/static/css/app.ff49eba8c60fb923a345.css.map
Normal file
File diff suppressed because one or more lines are too long
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -1,12 +0,0 @@
|
||||||
#!/bin/sh
|
|
||||||
|
|
||||||
# Sets and enables heart (recommended only in daemon mode)
|
|
||||||
# if [ "$RELEASE_COMMAND" = "daemon" ] || [ "$RELEASE_COMMAND" = "daemon_iex" ]; then
|
|
||||||
# HEART_COMMAND="$RELEASE_ROOT/bin/$RELEASE_NAME $RELEASE_COMMAND"
|
|
||||||
# export HEART_COMMAND
|
|
||||||
# export ELIXIR_ERL_OPTIONS="-heart"
|
|
||||||
# fi
|
|
||||||
|
|
||||||
# Set the release to work across nodes
|
|
||||||
export RELEASE_DISTRIBUTION="${RELEASE_DISTRIBUTION:-name}"
|
|
||||||
export RELEASE_NODE="${RELEASE_NODE:-<%= @release.name %>@127.0.0.1}"
|
|
|
@ -1,159 +0,0 @@
|
||||||
#!/bin/sh
|
|
||||||
# XXX: This should be removed when elixir's releases get custom command support
|
|
||||||
|
|
||||||
detect_flavour() {
|
|
||||||
arch="$(uname -m)"
|
|
||||||
if [ "$arch" = "x86_64" ]; then
|
|
||||||
arch="amd64"
|
|
||||||
elif [ "$arch" = "aarch64" ]; then
|
|
||||||
arch="arm64"
|
|
||||||
else
|
|
||||||
echo "Unsupported arch: $arch" >&2
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
if getconf GNU_LIBC_VERSION >/dev/null; then
|
|
||||||
libc_postfix=""
|
|
||||||
elif [ "$(ldd 2>&1 | head -c 9)" = "musl libc" ]; then
|
|
||||||
libc_postfix="-musl"
|
|
||||||
elif [ "$(find /lib/libc.musl* | wc -l)" ]; then
|
|
||||||
libc_postfix="-musl"
|
|
||||||
else
|
|
||||||
echo "Unsupported libc" >&2
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
echo "$arch$libc_postfix"
|
|
||||||
}
|
|
||||||
|
|
||||||
detect_branch() {
|
|
||||||
version="$(cut -d' ' -f2 <"$RELEASE_ROOT"/releases/start_erl.data)"
|
|
||||||
# Expected format: major.minor.patch_version(-number_of_commits_ahead_of_tag-gcommit_hash).branch
|
|
||||||
branch="$(echo "$version" | cut -d'.' -f 4)"
|
|
||||||
if [ "$branch" = "develop" ]; then
|
|
||||||
echo "develop"
|
|
||||||
elif [ "$branch" = "" ]; then
|
|
||||||
echo "stable"
|
|
||||||
else
|
|
||||||
# Note: branch name in version is of SemVer format and may only contain [0-9a-zA-Z-] symbols —
|
|
||||||
# if supporting releases for more branches, need to ensure they contain only these symbols.
|
|
||||||
echo "Can't detect the branch automatically, please specify it by using the --branch option." >&2
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
}
|
|
||||||
update() {
|
|
||||||
set -e
|
|
||||||
NO_RM=false
|
|
||||||
|
|
||||||
while echo "$1" | grep "^-" >/dev/null; do
|
|
||||||
case "$1" in
|
|
||||||
--zip-url)
|
|
||||||
FULL_URI="$2"
|
|
||||||
shift 2
|
|
||||||
;;
|
|
||||||
--no-rm)
|
|
||||||
NO_RM=true
|
|
||||||
shift
|
|
||||||
;;
|
|
||||||
--flavour)
|
|
||||||
FLAVOUR="$2"
|
|
||||||
shift 2
|
|
||||||
;;
|
|
||||||
--branch)
|
|
||||||
BRANCH="$2"
|
|
||||||
shift 2
|
|
||||||
;;
|
|
||||||
--tmp-dir)
|
|
||||||
TMP_DIR="$2"
|
|
||||||
shift 2
|
|
||||||
;;
|
|
||||||
-*)
|
|
||||||
echo "invalid option: $1" 1>&2
|
|
||||||
shift
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
done
|
|
||||||
|
|
||||||
RELEASE_ROOT=$(dirname "$SCRIPTPATH")
|
|
||||||
uri="https://akkoma-updates.s3-website.fr-par.scw.cloud"
|
|
||||||
project_id="2"
|
|
||||||
project_branch="${BRANCH:-$(detect_branch)}"
|
|
||||||
flavour="${FLAVOUR:-$(detect_flavour)}"
|
|
||||||
tmp="${TMP_DIR:-/tmp}"
|
|
||||||
artifact="$tmp/pleroma.zip"
|
|
||||||
full_uri="${FULL_URI:-${uri}/${project_branch}/akkoma-${flavour}}.zip"
|
|
||||||
echo "Downloading the artifact from ${full_uri} to ${artifact}"
|
|
||||||
curl "$full_uri" -o "${artifact}"
|
|
||||||
echo "Unpacking ${artifact} to ${tmp}"
|
|
||||||
unzip -q "$artifact" -d "$tmp"
|
|
||||||
echo "Copying files over to $RELEASE_ROOT"
|
|
||||||
if [ "$NO_RM" = false ]; then
|
|
||||||
echo "Removing files from the previous release"
|
|
||||||
rm -r "${RELEASE_ROOT:-?}"/*
|
|
||||||
fi
|
|
||||||
cp -rf "$tmp/release"/* "$RELEASE_ROOT"
|
|
||||||
echo "Removing temporary files"
|
|
||||||
rm -r "$tmp/release"
|
|
||||||
rm "$artifact"
|
|
||||||
echo "Done! Please refer to the changelog/release notes for changes and update instructions"
|
|
||||||
set +e
|
|
||||||
}
|
|
||||||
|
|
||||||
if [ -z "$1" ] || [ "$1" = "help" ]; then
|
|
||||||
# TODO: Just list the commands on `pleroma_ctl help` and output help for the individual command on `pleroma_ctl help $COMMAND`
|
|
||||||
echo "Usage: $(basename "$0") COMMAND [ARGS]
|
|
||||||
|
|
||||||
The known commands are:
|
|
||||||
|
|
||||||
create
|
|
||||||
Create database schema (needs to be executed only once)
|
|
||||||
|
|
||||||
migrate
|
|
||||||
Execute database migrations (needs to be done after updates)
|
|
||||||
|
|
||||||
rollback [VERSION]
|
|
||||||
Rollback database migrations (needs to be done before downgrading)
|
|
||||||
|
|
||||||
update [OPTIONS]
|
|
||||||
Update the instance.
|
|
||||||
|
|
||||||
Options:
|
|
||||||
--branch Update to a specified branch, instead of the latest version of the current one.
|
|
||||||
--flavour Update to a specified flavour (CPU architecture+libc), instead of the current one.
|
|
||||||
--zip-url Get the release from a specified url. If set, renders the previous 2 options inactive.
|
|
||||||
--no-rm Do not erase previous release's files.
|
|
||||||
--tmp-dir Download the temporary files to a specified directory.
|
|
||||||
|
|
||||||
and any mix tasks under Pleroma namespace, for example \`mix pleroma.user COMMAND\` is
|
|
||||||
equivalent to \`$(basename "$0") user COMMAND\`
|
|
||||||
|
|
||||||
By default pleroma_ctl will try calling into a running instance to execute non migration-related commands,
|
|
||||||
if for some reason this is undesired, set PLEROMA_CTL_RPC_DISABLED environment variable.
|
|
||||||
|
|
||||||
"
|
|
||||||
else
|
|
||||||
SCRIPT=$(readlink -f "$0")
|
|
||||||
SCRIPTPATH=$(dirname "$SCRIPT")
|
|
||||||
|
|
||||||
FULL_ARGS="$*"
|
|
||||||
|
|
||||||
ACTION="$1"
|
|
||||||
if [ $# -gt 0 ]; then
|
|
||||||
shift
|
|
||||||
fi
|
|
||||||
echo "$1" | grep "^-" >/dev/null
|
|
||||||
if [ $? -eq 1 ]; then
|
|
||||||
SUBACTION="$1"
|
|
||||||
if [ $# -gt 0 ]; then
|
|
||||||
shift
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ "$ACTION" = "update" ]; then
|
|
||||||
update "$@"
|
|
||||||
elif [ "$ACTION" = "migrate" ] || [ "$ACTION" = "rollback" ] || [ "$ACTION" = "create" ] || [ "$ACTION $SUBACTION" = "instance gen" ] || [ "$PLEROMA_CTL_RPC_DISABLED" = true ]; then
|
|
||||||
"$SCRIPTPATH"/pleroma eval 'Pleroma.ReleaseTasks.run("'"$FULL_ARGS"'")'
|
|
||||||
else
|
|
||||||
"$SCRIPTPATH"/pleroma rpc 'Pleroma.ReleaseTasks.run("'"$FULL_ARGS"'")'
|
|
||||||
fi
|
|
||||||
fi
|
|
|
@ -1,21 +0,0 @@
|
||||||
#!/sbin/openrc-run
|
|
||||||
|
|
||||||
supervisor=supervise-daemon
|
|
||||||
|
|
||||||
# Requires OpenRC >= 0.35
|
|
||||||
directory=/opt/pleroma
|
|
||||||
|
|
||||||
command=/opt/pleroma/bin/pleroma
|
|
||||||
command_args="start"
|
|
||||||
command_user=pleroma
|
|
||||||
command_background=1
|
|
||||||
|
|
||||||
# Ask process to terminate within 30 seconds, otherwise kill it
|
|
||||||
retry="SIGTERM/30/SIGKILL/5"
|
|
||||||
|
|
||||||
pidfile="/var/run/pleroma.pid"
|
|
||||||
|
|
||||||
depend() {
|
|
||||||
want nginx
|
|
||||||
need postgresql
|
|
||||||
}
|
|
|
@ -1,36 +0,0 @@
|
||||||
[Unit]
|
|
||||||
Description=Pleroma social network
|
|
||||||
After=network.target postgresql.service nginx.service
|
|
||||||
|
|
||||||
[Service]
|
|
||||||
KillMode=process
|
|
||||||
Restart=on-failure
|
|
||||||
|
|
||||||
; Name of the user that runs the Pleroma service.
|
|
||||||
User=pleroma
|
|
||||||
|
|
||||||
; Make sure that all paths fit your installation.
|
|
||||||
; Path to the home directory of the user running the Pleroma service.
|
|
||||||
Environment="HOME=/opt/pleroma"
|
|
||||||
; Path to the folder containing the Pleroma installation.
|
|
||||||
WorkingDirectory=/opt/pleroma
|
|
||||||
; Path to the Pleroma binary.
|
|
||||||
ExecStart=/opt/pleroma/bin/pleroma start
|
|
||||||
ExecStop=/opt/pleroma/bin/pleroma stop
|
|
||||||
|
|
||||||
; Some security directives.
|
|
||||||
; Use private /tmp and /var/tmp folders inside a new file system namespace, which are discarded after the process stops.
|
|
||||||
PrivateTmp=true
|
|
||||||
; The /home, /root, and /run/user folders can not be accessed by this service anymore. If your Pleroma user has its home folder in one of the restricted places, or use one of these folders as its working directory, you have to set this to false.
|
|
||||||
ProtectHome=true
|
|
||||||
; Mount /usr, /boot, and /etc as read-only for processes invoked by this service.
|
|
||||||
ProtectSystem=full
|
|
||||||
; Sets up a new /dev mount for the process and only adds API pseudo devices like /dev/null, /dev/zero or /dev/random but not physical devices. Disabled by default because it may not work on devices like the Raspberry Pi.
|
|
||||||
PrivateDevices=false
|
|
||||||
; Ensures that the service process and all its children can never gain new privileges through execve().
|
|
||||||
NoNewPrivileges=true
|
|
||||||
; Drops the sysadmin capability from the daemon.
|
|
||||||
CapabilityBoundingSet=~CAP_SYS_ADMIN
|
|
||||||
|
|
||||||
[Install]
|
|
||||||
WantedBy=multi-user.target
|
|
|
@ -1,11 +0,0 @@
|
||||||
## Customize flags given to the VM: http://erlang.org/doc/man/erl.html
|
|
||||||
## -mode/-name/-sname/-setcookie are configured via env vars, do not set them here
|
|
||||||
|
|
||||||
## Number of dirty schedulers doing IO work (file, sockets, etc)
|
|
||||||
##+SDio 5
|
|
||||||
|
|
||||||
## Increase number of concurrent ports/sockets
|
|
||||||
##+Q 65536
|
|
||||||
|
|
||||||
## Tweak GC to run more often
|
|
||||||
##-env ERL_FULLSWEEP_AFTER 10
|
|
Loading…
Reference in a new issue