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

github.com/nextcloud/apps.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/README
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2013-01-05 03:50:37 +0400
committerThomas Müller <thomas.mueller@tmit.eu>2013-01-05 03:50:37 +0400
commita69382a44a779b19728df5d17986c3cc275b2808 (patch)
tree6595aa0c5c4c82f724d6f0bbdc83ad8cf39bd3c8 /README
parentb512aa60dec8591182062a5396d12f9a647c53d0 (diff)
Create README
Diffstat (limited to 'README')
-rw-r--r--README24
1 files changed, 24 insertions, 0 deletions
diff --git a/README b/README
new file mode 100644
index 000000000..0d44fa370
--- /dev/null
+++ b/README
@@ -0,0 +1,24 @@
+In case you want to use the full apps repo within your ownCloud installation (most probably for devevlopment)
+you can follow these steps:
+
+1. clone this repo into your ownCloud installation into a new folder (maybe called apps2):
+ git clone git@github.com:owncloud/apps.git apps2
+
+2. add this additional apps folder to your configuration (config/config.php):
+ 'apps_paths' =>
+ array (
+ 0 =>
+ array (
+ 'path' => OC::$SERVERROOT.'/apps',
+ 'url' => '/apps',
+ 'writable' => false,
+ ),
+ 1 =>
+ array (
+ 'path' => OC::$SERVERROOT.'/apps2',
+ 'url' => '/apps2',
+ 'writable' => false,
+ )
+ ),
+
+3. Done ;-)