diff options
| author | lain <lain@soykaf.club> | 2020-02-26 08:26:16 +0000 | 
|---|---|---|
| committer | lain <lain@soykaf.club> | 2020-02-26 08:26:16 +0000 | 
| commit | fda6f35a467914d3d6bf6944a10dc928c4ab495c (patch) | |
| tree | fd610f79ee1d049e8c459e3d7135957a640e4ff4 /lib | |
| parent | 8b4d1a0b2917ac5146e6a37e062cda5ae968ea28 (diff) | |
| parent | 3bbfebd1c2f0e997a16c7938dd09b1621918cd12 (diff) | |
| download | pleroma-fda6f35a467914d3d6bf6944a10dc928c4ab495c.tar.gz pleroma-fda6f35a467914d3d6bf6944a10dc928c4ab495c.zip  | |
Merge branch 'feat/instance-gen-improvements' into 'develop'
small instance.gen task improvements
See merge request pleroma/pleroma!2245
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/mix/tasks/pleroma/instance.ex | 11 | 
1 files changed, 9 insertions, 2 deletions
diff --git a/lib/mix/tasks/pleroma/instance.ex b/lib/mix/tasks/pleroma/instance.ex index 2d8b8d673..54d34e42f 100644 --- a/lib/mix/tasks/pleroma/instance.ex +++ b/lib/mix/tasks/pleroma/instance.ex @@ -65,7 +65,8 @@ defmodule Mix.Tasks.Pleroma.Instance do          get_option(            options,            :instance_name, -          "What is the name of your instance? (e.g. Pleroma/Soykaf)" +          "What is the name of your instance? (e.g. The Corndog Emporium)", +          domain          )        email = get_option(options, :admin_email, "What is your admin email address?") @@ -206,8 +207,14 @@ defmodule Mix.Tasks.Pleroma.Instance do        write_robots_txt(indexable, template_dir)        shell_info( -        "\n All files successfully written! Refer to the installation instructions for your platform for next steps" +        "\n All files successfully written! Refer to the installation instructions for your platform for next steps."        ) + +      if db_configurable? do +        shell_info( +          " Please transfer your config to the database after running database migrations. Refer to \"Transfering the config to/from the database\" section of the docs for more information." +        ) +      end      else        shell_error(          "The task would have overwritten the following files:\n" <>  | 
