diff options
author | feld <feld@feld.me> | 2020-10-15 20:21:57 +0000 |
---|---|---|
committer | feld <feld@feld.me> | 2020-10-15 20:21:57 +0000 |
commit | 5703fb6d2a5f9fcffe050eadbc43758bcd2efa14 (patch) | |
tree | a9167edcdd5c956490fa0886901427c5423540c6 /docs/administration/CLI_tasks | |
parent | b48724afcdd9d46d6533aafdea4df1cc2d23b6ae (diff) | |
parent | 2030ffd4904b6ab5e99cefa62887154a49aaf4db (diff) | |
download | pleroma-5703fb6d2a5f9fcffe050eadbc43758bcd2efa14.tar.gz |
Merge branch 'issue/2009' into 'develop'
[#2009] fixed install docs (release env)
See merge request pleroma/pleroma!2854
Diffstat (limited to 'docs/administration/CLI_tasks')
-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 +``` |