diff options
Diffstat (limited to 'docs/administration/CLI_tasks/frontend.md')
-rw-r--r-- | docs/administration/CLI_tasks/frontend.md | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/docs/administration/CLI_tasks/frontend.md b/docs/administration/CLI_tasks/frontend.md new file mode 100644 index 000000000..d2c183d5b --- /dev/null +++ b/docs/administration/CLI_tasks/frontend.md @@ -0,0 +1,18 @@ +# Managing frontends + +{! backend/administration/CLI_tasks/general_cli_task_info.include !} + +## Download the latest frontend + +This downloads a snapshot of the latest Pleroma-FE for a given reference and writes it to the `static_dir`. In a default setup, this means that this snapshot will be served as the frontend by the backend. + +```sh tab="OTP" + ./bin/pleroma_ctl pleroma.frontend download [<options>] +``` + +```sh tab="From Source" +mix pleroma.frontend download [<options>] +``` + +### Options +- `--reference <reference>` - Specify the reference that will be downloaded. Defaults to `master`. |