diff options
author | Egor Kislitsyn <egor@kislitsyn.com> | 2020-10-20 17:27:29 +0400 |
---|---|---|
committer | Egor Kislitsyn <egor@kislitsyn.com> | 2020-10-20 17:27:29 +0400 |
commit | e87901c424015b79e2412310f41e74f3f0e71544 (patch) | |
tree | b2214aa2a81311a21ec871a1f16881db6a52025b /docs/administration | |
parent | ad605e3e16ba3f6ee3df7a0a3e6705036fef369f (diff) | |
parent | 44b2a137d12a4ded75586f919ad1c927c6677a70 (diff) | |
download | pleroma-e87901c424015b79e2412310f41e74f3f0e71544.tar.gz |
Merge remote-tracking branch 'origin/develop' into feature/account-export
Diffstat (limited to 'docs/administration')
-rw-r--r-- | docs/administration/CLI_tasks/instance.md | 2 | ||||
-rw-r--r-- | docs/administration/CLI_tasks/release_environments.md | 9 |
2 files changed, 11 insertions, 0 deletions
diff --git a/docs/administration/CLI_tasks/instance.md b/docs/administration/CLI_tasks/instance.md index d6913280a..982b22bf3 100644 --- a/docs/administration/CLI_tasks/instance.md +++ b/docs/administration/CLI_tasks/instance.md @@ -40,3 +40,5 @@ If any of the options are left unspecified, you will be prompted interactively. - `--strip-uploads <Y|N>` - use ExifTool to strip uploads of sensitive location data - `--anonymize-uploads <Y|N>` - randomize uploaded filenames - `--dedupe-uploads <Y|N>` - store files based on their hash to reduce data storage requirements if duplicates are uploaded with different filenames +- `--skip-release-env` - skip generation the release environment file +- `--release-env-file` - release environment file path diff --git a/docs/administration/CLI_tasks/release_environments.md b/docs/administration/CLI_tasks/release_environments.md new file mode 100644 index 000000000..36ab43864 --- /dev/null +++ b/docs/administration/CLI_tasks/release_environments.md @@ -0,0 +1,9 @@ +# Generate release environment file + +```sh tab="OTP" + ./bin/pleroma_ctl release_env gen +``` + +```sh tab="From Source" +mix pleroma.release_env gen +``` |