diff options
author | Maksim Pechnikov <parallel588@gmail.com> | 2020-08-07 15:55:08 +0300 |
---|---|---|
committer | Maksim Pechnikov <parallel588@gmail.com> | 2020-10-15 22:31:00 +0300 |
commit | cf53e300f8e850aeacb88e6e6b4d465378acc199 (patch) | |
tree | 989c3d7d9c1805fc9dad9361c1260a3c0ccbfa00 /lib/mix/tasks | |
parent | 595da6080dc12675eb7673a3190b88ad5a3712ed (diff) | |
download | pleroma-cf53e300f8e850aeacb88e6e6b4d465378acc199.tar.gz pleroma-cf53e300f8e850aeacb88e6e6b4d465378acc199.zip |
added generate the release env to `pleroma.instance gen`
Diffstat (limited to 'lib/mix/tasks')
-rw-r--r-- | lib/mix/tasks/pleroma/instance.ex | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/lib/mix/tasks/pleroma/instance.ex b/lib/mix/tasks/pleroma/instance.ex index fc21ae062..caa7dfbd3 100644 --- a/lib/mix/tasks/pleroma/instance.ex +++ b/lib/mix/tasks/pleroma/instance.ex @@ -36,7 +36,8 @@ defmodule Mix.Tasks.Pleroma.Instance do listen_port: :string, strip_uploads: :string, anonymize_uploads: :string, - dedupe_uploads: :string + dedupe_uploads: :string, + skip_release_env: :boolean ], aliases: [ o: :output, @@ -241,6 +242,16 @@ defmodule Mix.Tasks.Pleroma.Instance do write_robots_txt(static_dir, indexable, template_dir) + if Keyword.get(options, :skip_release_env, false) do + shell_info(""" + Release environment file is skip. Please generate the release env file before start. + `MIX_ENV=#{Mix.env()} mix pleroma.release_env gen` + """) + else + shell_info("Generation the environment file:") + Mix.Tasks.Pleroma.ReleaseEnv.run(["gen"]) + end + shell_info( "\n All files successfully written! Refer to the installation instructions for your platform for next steps." ) |