Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/richdocuments.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndras Timar <andras.timar@collabora.com>2016-04-12 14:07:46 +0300
committerAndras Timar <andras.timar@collabora.com>2016-04-12 14:07:46 +0300
commit97a6e12461a38f7f6627c14bbfbf378ae2c7fa25 (patch)
tree0a17a8587a4a7f8e36840735759704f57664e37d /README.md
parentd4fd4e532ead342d9ca383d8c7f359649866ade6 (diff)
better README
Diffstat (limited to 'README.md')
-rw-r--r--README.md32
1 files changed, 31 insertions, 1 deletions
diff --git a/README.md b/README.md
index 29a136d1..cfae13b5 100644
--- a/README.md
+++ b/README.md
@@ -1 +1,31 @@
-richdocuments \ No newline at end of file
+richdocuments – ownCloud application to integrate Collabora Online
+====================================================================
+
+Installation
+------------
+
+ `make dist`
+
+Creates a tarball. The contents should go under `owncloud/apps/richdocuments`.
+
+ `rpmbuild -ba -vv owncloud-collabora-online.spec`
+
+Creates an RPM package (tested only with openSUSE). The [CODE VM](https://collaboraoffice.com/code/) uses it.
+
+Memcache is a requirement (tested only with APCu). Install php-apcu, php5-apcu, or whatever this package is called on your Linux distro, and add the following line to owncloud/config/config.php:
+
+ `'memcache.local' => '\OC\Memcache\APCu',`
+
+From command line you can use:
+
+ `occ config:system:set --value='\OC\Memcache\APCu' memcache.local`
+
+You can enable richdocument application from the command line:
+
+ `occ app:enable richdocuments`
+
+You need to configure the WOPI Client URL, which is where the LibreOffice Online WebSocket Daemon (loolwsd) is listening. It is in Admin - Collabora Online section in ownCloud, or you can set it from command line:
+
+ `occ config:app:set --value='https://<hostname or IP address>:<port>' richdocuments wopi_url`
+
+Default port is 9980. If loolwsd was compiled without SSL (like in the [CODE VM](https://collaboraoffice.com/code/)), you have to write `http` instead of `https`.