Go to file
John Molakvoæ (skjnldsv) 3f3ad0eeb8
2.2.0
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
2018-07-10 15:20:48 +02:00
.github Update issue_template.md 2017-04-18 13:00:31 +02:00
.tx Fix tx config 2018-02-12 22:56:08 +01:00
appinfo 2.2.0 2018-07-10 15:20:48 +02:00
css 2.2.0 2018-07-10 15:20:48 +02:00
img Fix sharee design layout and buttons 2017-02-18 19:12:45 +01:00
js 2.2.0 2018-07-10 15:20:48 +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 Initial commit 2015-10-26 11:29:01 +01:00
.editorconfig add editorconfig 2017-09-14 15:44:14 +02:00
.eslintrc.json Add n to eslint globals 2016-07-26 13:20:08 +02:00
.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 Added agplv3 license file. 2016-10-20 20:49:25 +02:00
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 2.2.0 2018-07-10 15:20:48 +02:00
phpunit.integration.xml add common makefile, make it possible to run tests and build package without installing global libs, enhance travis build file to also run php tests, add dev docs 2016-03-27 14:53:29 +02:00
phpunit.xml add common makefile, make it possible to run tests and build package without installing global libs, enhance travis build file to also run php tests, add dev docs 2016-03-27 14:53:29 +02:00
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