1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80
|
# Kopano WebApp
WebApp provides all the familiar email, advanced calendaring and contacts
features you need to be productive. It helps you by providing an overview of
what matters to you, whether this is your incoming email, your weekly schedule
or the contact details of that person you really need to call.
# Dependencies
The following dependencies are required:
* PHP - with json, xml and gettext modules
* php-mapi
* gettext - for msgfmt (translations)
* libxml2-utils - for xmllint
* ant, ant-contrib - for deploying JavaScript
* compass - for generating css files.
* make
Optional for development a pre-commit hook can be used, which runs JSHint.
```
npm install
```
# Running static analysis
ESLint is used for JavaScript linting.
```
make lint
```
Running PHP linting, requires [phpmd](https://phpmd.org/about.html) to be installed:
```
npm run phplint
```
# Tests
JavaScript unittest can be run with the following command and are located in test/js.
```
make test
```
Run coverage, output file in test/js/coverage
```
make open-coverage
```
# Documentation
In-depth documentation, such as administration and user manuals about our
products can be found on our [Documentation Portal](
https://documentation.kopano.io/). Additionally, a [Knowledge Base](
https://kb.kopano.io/) is available for quick start guides, handy code
snippets, and troubleshooting help.
# Contributing
The main development of Kopano WebApp takes place in a [Bitbucket
instance](https://stash.kopano.io/projects/KW/repos/kopano-webapp/browse) with
development tickets organised in [Jira](https://jira.kopano.io/projects/KW/).
Please see [CONTRIBUTING.md](CONTRIBUTING.md) for steps on how to contribute
patches.
# Downloading compiled packages
Nightly builds of the ```master``` branch can be downloaded from
https://download.kopano.io/. In addition to this, QAed builds of the
```release``` and ```stable``` branches are available to subscription holders
from the [Kopano Portal](https://portal.kopano.com/) and a [package
repository](
https://kb.kopano.io/display/WIKI/Install+and+upgrade+Kopano+products+using+repositories).
# Support
Community Support is available through the [Kopano
Forum](https://forum.kopano.io/) and through the ```#kopano``` channel on the
Freenode IRC network. [Additional support options](https://kopano.com/support/)
are available for subscription holders.
|