From 23c8d7e30208db68f4940db5f267e646ac7b9a9c Mon Sep 17 00:00:00 2001 From: softmetz <47755368+softmetz@users.noreply.github.com> Date: Mon, 18 Feb 2019 22:34:05 +0100 Subject: [PATCH 1/3] add --no-dev parameter to composer --- doc/Install.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/Install.md b/doc/Install.md index dd483095c4..1d94926ea5 100644 --- a/doc/Install.md +++ b/doc/Install.md @@ -57,7 +57,7 @@ The Linux commands to clone the repository into a directory "mywebsite" would be git clone https://github.com/friendica/friendica.git -b master mywebsite cd mywebsite - bin/composer.phar install + bin/composer.phar install --no-dev Make sure the folder *view/smarty3* exists and is writable by the webserver user, in this case `www-data` From fd4e8a430cd4a0c468c35fbd8f94dfd4429a8ccc Mon Sep 17 00:00:00 2001 From: softmetz <47755368+softmetz@users.noreply.github.com> Date: Mon, 18 Feb 2019 22:36:16 +0100 Subject: [PATCH 2/3] correct information about changing domain name --- doc/Install.md | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/doc/Install.md b/doc/Install.md index 1d94926ea5..6d498abeca 100644 --- a/doc/Install.md +++ b/doc/Install.md @@ -18,10 +18,7 @@ If you do not have a Friendica account yet, you can register a temporary one at The account will expire after 7 days, but you can ask the server admin to keep your account longer, should the problem not be resolved after that. Before you begin: Choose a domain name or subdomain name for your server. -Put some thought into this. Changing it after installation is currently not supported. -Things will break, and some of your friends may have difficulty communicating with you. -We plan to address this limitation in a future release. - +Put some thought into this. While changing it after installation is supported, things still might break. Requirements --- From 6170936d5d92f9b7cc6da16a52fcb2ff0a0c677c Mon Sep 17 00:00:00 2001 From: softmetz <47755368+softmetz@users.noreply.github.com> Date: Mon, 18 Feb 2019 22:38:48 +0100 Subject: [PATCH 3/3] add --no-dev parameter to composer --- doc/Update.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/Update.md b/doc/Update.md index 17c2d0e724..7b7ccf7bbd 100644 --- a/doc/Update.md +++ b/doc/Update.md @@ -21,7 +21,7 @@ You can get the latest changes at any time with cd path/to/friendica git pull - bin/composer.phar install + bin/composer.phar install --no-dev The addon tree has to be updated separately like so: @@ -69,4 +69,4 @@ DROP TABLE ; RENAME TABLE _new TO ; ``` -This method is slower overall, but it is better suited for large numbers of duplicates. \ No newline at end of file +This method is slower overall, but it is better suited for large numbers of duplicates.