No description
  • JavaScript 88.8%
  • CSS 4.8%
  • PHP 4.3%
  • HTML 1.4%
  • Hack 0.5%
  • Other 0.2%
Find a file
Morris Jobke 36b1707f13
Merge pull request #75 from nextcloud/delete_apptemplate
delete apptemplate because it's horribly outdated
2019-05-17 22:34:51 +02:00
admin_migrate [tx-robot] updated from transifex 2016-06-22 00:50:54 -04:00
django_auth
encryption_dummy implement missing isReadable in dummy encryption module 2015-08-19 16:31:17 +02:00
files_archive
files_odfviewer [tx-robot] updated from transifex 2016-05-09 00:51:03 -04:00
files_sgfviewer
files_svgedit
fluxx_compensator Merge pull request #1652 from C5H8NNaO4/master 2015-06-25 14:48:28 +02:00
impress [tx-robot] updated from transifex 2016-07-10 00:50:52 -04:00
l10n [tx-robot] updated from transifex 2016-07-21 00:51:00 +02:00
pong
user_external add warning about app move to new repo 2018-12-21 18:01:46 +01:00
user_migrate [tx-robot] updated from transifex 2016-06-03 00:51:37 -04:00
user_oauth
user_openid_provider [tx-robot] updated from transifex 2016-07-17 06:50:49 +02:00
user_vd
user_webfinger
.drone.yml Update syntax to drone 0.8 2017-08-09 11:03:54 +02:00
.gitignore
.travis.yml
build.xml
CONTRIBUTING.md
issue_template.md Update issue_template.md 2017-04-18 13:02:58 +02:00
MAINTAINERS.md
README

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 ;-)