Go to file
Nextcloud bot 9cff594e18
[tx-robot] updated from transifex
2018-07-07 00:11:16 +00:00
.github
.tx Fix tx config 2018-02-12 22:56:08 +01:00
appinfo New update 2.1.5 2018-06-01 15:39:54 +02:00
css changed styling to icon-more and removed styling from parent to position popover menu correctly when open 2018-05-04 10:33:07 +02:00
img
js Update colour to default server generator 2018-05-05 18:27:35 +02:00
l10n [tx-robot] updated from transifex 2018-07-07 00:11:16 +00:00
lib Merge pull request #173 from nextcloud/contactsmenu-integration 2017-04-26 01:31:53 +02:00
templates changed styling to icon-more and removed styling from parent to position popover menu correctly when open 2018-05-04 10:33:07 +02:00
tests Merge pull request #173 from nextcloud/contactsmenu-integration 2017-04-26 01:31:53 +02:00
.bowerrc
.editorconfig add editorconfig 2017-09-14 15:44:14 +02:00
.eslintrc.json
.gitignore remove bower 2017-10-30 11:10:40 +01:00
.stylelintrc Fixed scss lint 2018-02-26 10:04:33 +01:00
.travis.yml Fixed tests 2018-02-26 12:28:54 +01:00
COPYING
Makefile remove bower 2017-10-30 11:10:40 +01:00
README.md Remove myself from maintainers list. 2018-02-03 15:14:02 +01:00
gulpfile.js remove bower 2017-10-30 11:10:40 +01:00
karma.conf.js fix karma 2017-10-30 11:36:36 +01:00
package.json New update 2.1.5 2018-06-01 15:39:54 +02:00
phpunit.integration.xml
phpunit.xml
vendorScripts.json remove bower 2017-10-30 11:10:40 +01:00

README.md

Nextcloud Contacts

Downloads irc Build Status Code coverage

A contacts app for Nextcloud. Easily sync contacts from various devices with your Nextcloud and edit them online.

Why is this so awesome?

  • 🚀 Integration with other Nextcloud apps! Currently Mail and Calendar more to come.
  • 🎉 Never forget a birthday! You can sync birthdays and other recurring events with your Nextcloud Calendar.
  • 👥 Sharing of Adressbooks! You want to share your contacts with your friends or coworkers? No problem!
  • 🙈 Were not reinventing the wheel! Based on the great and open SabreDAV library.

Installation

In your Nextcloud, simply navigate to »Apps«, choose the category »Organization«, find the Contacts app and enable it. Then open the Contacts app from the app menu.

Support

If you need assistance or want to ask a question about Contacts, you are welcome to ask for support in our Forums or the IRC-Channel. If you have found a bug, feel free to open a new Issue on GitHub. Keep in mind, that this repository only manages the frontend. If you find bugs or have problems with the CardDAV-Backend, you should ask the guys at Nextcloud server for help!

Maintainers:

If you'd like to join, just go through the issue list and fix some. :)

Nightly builds

Instead of setting everything up manually, you can just download the nightly builds instead. These builds are updated every 24 hours, and are pre-configured with all the needed dependencies.

  1. Download
  2. Extract the tar archive to 'path-to-nextcloud/apps'
  3. Navigate to »Apps«, choose the category »Productivity«, find the Contacts app and enable it.

The nightly builds are provided by Portknox.net

Building the app

The app can be built by using the provided Makefile by running:

make

This requires the following things to be present:

  • make
  • which
  • tar: for building the archive
  • curl: used if phpunit and composer are not installed to fetch them from the web
  • npm: for building and testing everything JS

Running tests

You can use the provided Makefile to run all tests by using:

make test

This will run the PHP unit and integration tests and if a package.json is present in the js/ folder will execute npm run test

Of course you can also install PHPUnit and use the configurations directly:

phpunit -c phpunit.xml

or:

phpunit -c phpunit.integration.xml

for integration tests