diff options
author | rinpatch <rinpatch@sdf.org> | 2019-10-03 09:35:21 +0300 |
---|---|---|
committer | rinpatch <rinpatch@sdf.org> | 2019-10-03 09:35:21 +0300 |
commit | d39ccc2e7ffd019f8fe2438f388c0a0bb8aac34a (patch) | |
tree | 375a5e32dc00f7fbc760b20cddf8bad170251786 /docs/administration | |
parent | 808d0a0170577155d0f1097c66c4e0b23c8303b9 (diff) | |
download | pleroma-d39ccc2e7ffd019f8fe2438f388c0a0bb8aac34a.tar.gz pleroma-d39ccc2e7ffd019f8fe2438f388c0a0bb8aac34a.zip |
Move uploads task docs to a separate file
Diffstat (limited to 'docs/administration')
-rw-r--r-- | docs/administration/CLI_tasks/uploads.md | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/docs/administration/CLI_tasks/uploads.md b/docs/administration/CLI_tasks/uploads.md new file mode 100644 index 000000000..a72bbd01f --- /dev/null +++ b/docs/administration/CLI_tasks/uploads.md @@ -0,0 +1,12 @@ +# Managing uploads + +Every command should be ran with a prefix, in case of OTP releases it is `./bin/pleroma_ctl uploads` and in case of source installs it's `mix pleroma.uploads`. + +## Migrate uploads from local to remote storage +```sh +$PREFIX migrate_local TARGET_UPLOADER [OPTIONS...] +``` +## Options +- `--delete` - delete local uploads after migrating them to the target uploader + +A list of available uploaders can be seen in [Configuration Cheat Sheet](../../configuration/cheatsheet.md#pleromaupload) |