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

README - github.com/nextcloud/apps.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/README
blob: 9cb64a8adaa11a0d0d4f4f37b8c1d4a116701d8d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
In case you want to use the full apps repo within your ownCloud installation (most probably for development)
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 ;-)