2015-09-27 03:07:06 +02:00
Zulip
=====
Zulip is a powerful, open source group chat application. Written in
Python and using the Django framework, Zulip supports both private
messaging and group chats via conversation streams.
Zulip also supports fast search, drag-and-drop file uploads, image
previews, group private messages, audible notifications,
missed-message emails, desktop apps, and much more.
Further information on the Zulip project and its features can be found
2015-10-17 20:16:13 +02:00
at https://www.zulip.org.
Running Zulip in production
===========================
This is documented in https://zulip.org/server.html and [README.prod.md ](README.prod.md ).
2015-09-27 03:07:06 +02:00
2015-09-26 23:02:28 +02:00
Contributing to Zulip
=====================
2015-10-17 20:16:13 +02:00
Zulip welcomes all forms of contributions! The page documents the
Zulip development process.
2015-09-26 23:02:28 +02:00
2015-10-17 20:16:13 +02:00
* **Pull requests**. Before a pull request can be merged, you need to to sign the [Dropbox
2015-09-26 23:02:28 +02:00
Contributor License Agreement](https://opensource.dropbox.com/cla/).
2015-10-17 20:16:13 +02:00
Also, please skim our [commit message style
2015-09-26 23:02:28 +02:00
guidelines](http://zulip.readthedocs.org/en/latest/code-style.html#commit-messages).
2015-10-17 20:16:13 +02:00
* **Testing**. The Zulip automated tests all run automatically when
you submit a pull request, but you can also run them all in your
development environment following the instructions in the [testing
section](https://github.com/zulip/zulip#running-the-test-suite) below.
* **Developer Documentation**. Zulip has a growing collection of
developer documentation on [Read The Docs ](https://zulip.readthedocs.org/ ).
Recommended reading for new contributors includes the
[directory structure ](http://zulip.readthedocs.org/en/latest/directory-structure.html ) and
[new feature tutorial ](http://zulip.readthedocs.org/en/latest/new-feature-tutorial.html ).
* **Mailing list and bug tracker** Zulip has a [development discussion
mailing list](https://groups.google.com/forum/#!forum/zulip-devel) and
uses [GitHub issues ](https://github.com/zulip/zulip/issues ). Feel
free to send any questions or suggestions of areas where you'd love to
see more documentation to the list! Please report any security issues
you discover to support@zulip.com.
* **App codebases** This repository is for the Zulip server and web app; the
[desktop ](https://github.com/zulip/zulip-desktop ),
[Android ](https://github.com/zulip/zulip-android ), and
[iOS ](https://github.com/zulip/zulip-ios ) apps are separate
repositories.
How to get involved with contributing to Zulip
==============================================
First, subscribe to the Zulip [development discussion mailing list ](https://groups.google.com/forum/#!forum/zulip-devel ).
The Zulip project uses a system of labels in our [issue
tracker](https://github.com/zulip/zulip/issues) to make it easy to
find a project if you don't have your own project idea in mind or want
2015-10-26 17:51:32 +01:00
to get some experience with working on Zulip before embarking on a
2015-10-17 20:16:13 +02:00
larger project you have in mind:
* [Bite Size ](https://github.com/zulip/zulip/labels/bite%20size ):
Smaller projects that could be a great first contribution.
* [Integrations ](https://github.com/zulip/zulip/labels/integrations ).
Integrate Zulip with another piece of software and contribute it
back to the community! Writing an integration can be a great
started project. There's some brief documentation on the best way
to write integrations at https://github.com/zulip/zulip/issues/70.
* [Documentation ](https://github.com/zulip/zulip/labels/documentation ).
The Zulip project loves contributions of new documentation.
* [Help Wanted ](https://github.com/zulip/zulip/labels/help%20wanted ):
A broader list of projects that nobody is currently working on.
* [Platform support ](https://github.com/zulip/zulip/labels/Platform%20support ).
These are open issues about making it possible to install Zulip on a wider
range of platforms.
* [Bugs ](https://github.com/zulip/zulip/labels/bug ). Open bugs.
* [Feature requests ](https://github.com/zulip/zulip/labels/enhancement ).
Browsing this list can be a great way to find feature ideas to implement that
other Zulip users are excited about.
If you're excited about helping with an open issue, just post on the
conversation thread that you're working on it. You're encouraged to
ask questions on how to best implement or debug your changes -- the
Zulip maintainers are excited to answer questions to help you stay
unblocked and working efficiently.
We also welcome suggestions of features that you feel would be
valuable or changes that you feel would make Zulip a better open
source project, and are happy to support you in adding new features or
other user experience improvements to Zulip.
If you have a new feature you'd like to add, we recommend you start by
opening a GitHub issue about the feature idea explaining the problem
that you're hoping to solve and that you're excited to work on it. A
Zulip maintainer will usually reply within a day with feedback on the
idea, notes on any important issues or concerns, and and often tips on
how to implement or test it. Please feel free to ping the thread if
you don't hear a response from the maintainers -- we try to be very
responsive so this usually means we missed your message.
For significant changes to the visual design, user experience, data
model, or architecture, we highly recommend posting a mockup,
screenshot, or description of what you have in mind to zulip-devel@ to
get broad feedback before you spend too much time on implementation
details.
Finally, before implementing a larger feature, we highly recommend
looking at the new feature tutorial and coding style guidelines on
ReadTheDocs.
Feedback on how to make this development process more efficient, fun,
and friendly to new contributors is very welcome! Just shoot an email
to the Zulip Developers list with your thoughts.
2015-09-26 23:02:28 +02:00
2015-09-23 06:43:29 +02:00
Installing the Zulip Development environment
============================================
2015-06-10 20:57:08 +02:00
2015-09-30 08:28:14 +02:00
You will need a machine with at least 2GB of RAM available (see
https://github.com/zulip/zulip/issues/32 for a plan for how to
dramatically reduce this requirement).
2015-10-06 03:17:25 +02:00
Start by cloning this repository: `git clone https://github.com/zulip/zulip.git`
2015-08-17 06:37:14 +02:00
Using Vagrant
-------------
2015-08-17 20:15:03 +02:00
This is the recommended approach, and is tested on OS X 10.10 as well as Ubuntu 14.04.
2015-08-17 06:37:14 +02:00
2015-09-30 08:28:14 +02:00
* The best performing way to run the Zulip development environment is
using an LXC container. If your host is Ubuntu 14.04 (or newer;
what matters is having support for LXC containers), you'll want to
install and configure the LXC Vagrant provider like this:
`sudo apt-get install vagrant lxc lxc-templates cgroup-lite redir && vagrant plugin install vagrant-lxc`
2015-10-14 18:01:42 +02:00
* If your host is OS X, [download VirtualBox ](https://www.virtualbox.org/wiki/Downloads ),
[download Vagrant ](https://www.vagrantup.com/downloads.html ), and install them both.
2015-08-17 20:15:03 +02:00
2015-09-23 06:27:36 +02:00
Once that's done, simply change to your zulip directory and run
2015-10-14 18:01:42 +02:00
`vagrant up` in your terminal to install the development server. This
will take a long time on the first run because Vagrant needs to
download the Ubuntu Trusty base image, but later you can run `vagrant
destroy` and then `vagrant up` again to rebuild the environment and it
will be much faster.
2015-09-23 06:27:36 +02:00
Once that finishes, you can run the development server as follows:
2015-09-25 20:51:41 +02:00
```
vagrant ssh -- -L9991:localhost:9991
# Now inside the container
cd /srv/zulip
source /srv/zulip-venv/bin/activate
./tools/run-dev.py --interface=''
```
2015-09-23 06:27:36 +02:00
You can now visit < http: / / localhost:9991 / > in your browser. To get
shell access to the virtual machine running the server, use `vagrant ssh` .
2015-09-25 20:51:41 +02:00
(A small note on tools/run-dev.py: the `--interface=''` option will make
2015-09-25 04:07:40 +02:00
the development server listen on all network interfaces. While this
is correct for the Vagrant guest sitting behind a NAT, you probably
don't want to use that option when using run-dev.py in other environments).
2015-09-23 06:27:36 +02:00
The run-dev.py console output will show any errors your Zulip
2015-10-17 20:16:13 +02:00
development server encounters. It runs on top of Django's [manage.py
runserver](https://docs.djangoproject.com/en/1.8/ref/django-admin/#runserver-port-or-address-port)
tool, which will automatically restart the Zulip Django and Tornado
servers whenever you save changes to Python code.
2015-09-23 06:27:36 +02:00
2015-10-14 22:11:04 +02:00
However, the Zulip queue workers will not automatically restart when
you save changes, so you will need to ctrl-C and then restart
`run-dev.py` manually if you are testing changes to the queue workers
or if a queue worker has crashed.
2015-09-30 08:28:14 +02:00
Using provision.py without Vagrant
----------------------------------
If you'd like to install a Zulip development environment on a server
that's already running Ubuntu 14.04 Trusty, you can do that by just
running:
```
sudo apt-get update
sudo apt-get install -y python-pbs
python /srv/zulip/provision.py
cd /srv/zulip
source /srv/zulip-venv/bin/activate
./tools/run-dev.py
```
2015-08-17 06:37:14 +02:00
By hand
-------
2015-09-30 08:28:14 +02:00
If you really want to install everything by hand, the below
instructions should work.
2015-08-17 06:37:14 +02:00
2015-06-10 20:57:08 +02:00
Install the following non-Python dependencies:
* libffi-dev — needed for some Python extensions
* postgresql 9.1 or later — our database (also install development headers)
* memcached (and headers)
* rabbitmq-server
* libldap2-dev
* python-dev
* redis-server — rate limiting
* tsearch-extras — better text search
2015-10-15 00:35:18 +02:00
* libfreetype6-dev - needed before you pip install Pillow to properly generate emoji PNGs
2015-06-10 20:57:08 +02:00
On Debian or Ubuntu systems:
2015-09-25 20:51:41 +02:00
```
2015-10-15 00:35:18 +02:00
sudo apt-get install libffi-dev memcached rabbitmq-server libldap2-dev python-dev redis-server postgresql-server-dev-all libmemcached-dev libfreetype6-dev
2015-09-25 20:51:41 +02:00
# If on 12.04 or wheezy:
sudo apt-get install postgresql-9.1
wget https://dl.dropboxusercontent.com/u/283158365/zuliposs/postgresql-9.1-tsearch-extras_0.1.2_amd64.deb
sudo dpkg -i postgresql-9.1-tsearch-extras_0.1.2_amd64.deb
# If on 14.04:
sudo apt-get install postgresql-9.3
wget https://dl.dropboxusercontent.com/u/283158365/zuliposs/postgresql-9.3-tsearch-extras_0.1.2_amd64.deb
sudo dpkg -i postgresql-9.3-tsearch-extras_0.1.2_amd64.deb
# If on 15.04 or jessie:
sudo apt-get install postgresql-9.4
wget https://dl.dropboxusercontent.com/u/283158365/zuliposs/postgresql-9.4-tsearch-extras_0.1_amd64.deb
sudo dpkg -i postgresql-9.4-tsearch-extras_0.1_amd64.deb
2015-10-06 16:03:17 +02:00
```
Now continue with the "All systems" instructions below.
On Fedora 22 (experimental):
2015-11-04 05:53:29 +01:00
These instructions are experimental and may have bugs; patches welcome!
2015-10-06 16:03:17 +02:00
```
2015-10-15 00:35:18 +02:00
sudo dnf install libffi-devel memcached rabbitmq-server openldap-devel python-devel redis postgresql-server postgresql-devel postgresql libmemcached-devel freetype-devel
2015-10-06 16:03:17 +02:00
wget https://launchpad.net/~tabbott/+archive/ubuntu/zulip/+files/tsearch-extras_0.1.3.tar.gz
tar xvzf tsearch-extras_0.1.3.tar.gz
cd ts2
make
sudo make install
# Hack around missing dictionary files -- need to fix this to get
# the proper dictionaries from what in debian is the hunspell-en-us package.
sudo touch /usr/share/pgsql/tsearch_data/english.stop
sudo touch /usr/share/pgsql/tsearch_data/en_us.dict
sudo touch /usr/share/pgsql/tsearch_data/en_us.affix
# Edit the postgres settings:
sudo vi /var/lib/pgsql/data/pg_hba.conf
# Add this line before the first uncommented line to enable password auth:
host all all 127.0.0.1/32 md5
# Start the services
sudo systemctl start redis memcached rabbitmq-server postgresql
2015-11-04 05:53:29 +01:00
# Enable automatic service startup after the system startup
sudo systemctl enable redis rabbitmq-server memcached postgresql
2015-10-06 16:03:17 +02:00
```
2015-09-25 20:51:41 +02:00
2015-11-04 05:53:29 +01:00
Now continue with the All Systems instructions below.
On CentOS 7 Core (experimental):
These instructions are experimental and may have bugs; patches welcome!
2015-10-08 12:33:15 +02:00
```
# Add user zulip to the system (not necessary if you configured zulip as the administrator
# user during the install process of CentOS 7).
useradd zulip
# Create a password for zulip user
passwd zulip
# Allow zulip to sudo
visudo
# Add this line after line `root ALL=(ALL) ALL`
zulip ALL=(ALL) ALL
# Switch to zulip user
su zulip
# Enable EPEL 7 repo so we can install rabbitmq-server, redis and other dependencies
sudo yum install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm
# Install dependencies
sudo yum install libffi-devel memcached rabbitmq-server openldap-devel python-devel redis postgresql-server \
postgresql-devel postgresql libmemcached-devel wget python-pip openssl-devel freetype-devel libjpeg-turbo-devel \
zlib-devel nodejs
# We need these packages to compile tsearch-extras
sudo yum groupinstall "Development Tools"
2015-11-04 05:53:29 +01:00
2015-10-08 12:33:15 +02:00
cd & & wget https://launchpad.net/~tabbott/+archive/ubuntu/zulip/+files/tsearch-extras_0.1.3.tar.gz
tar xvzf tsearch-extras_0.1.3.tar.gz
cd ts2
make -j $(nproc)
sudo make install
2015-11-04 05:53:29 +01:00
# Hack around missing dictionary files -- need to fix this to get
# the proper dictionaries from what in debian is the hunspell-en-us package.
2015-10-08 12:33:15 +02:00
sudo touch /usr/share/pgsql/tsearch_data/english.stop
sudo touch /usr/share/pgsql/tsearch_data/en_us.dict
sudo touch /usr/share/pgsql/tsearch_data/en_us.affix
# clone Zulip's git repo and cd into it
cd & & git clone https://github.com/zulip/zulip & & cd zulip/
# Initialize the postgres db
sudo postgresql-setup initdb
# Edit the postgres settings:
sudo vi /var/lib/pgsql/data/pg_hba.conf
# Add these two lines after line 80:
local zulip zulip md5
host all all 127.0.0.1/32 md5
# Change these lines:
host all all 127.0.0.1/32 ident
host all all ::1/128 ident
# to this:
host all all 127.0.0.1/32 md5
host all all ::1/128 md5
# Start the services
sudo systemctl start redis rabbitmq-server memcached postgresql
# Enable automatic service startup after the system startup
sudo systemctl enable redis rabbitmq-server memcached postgresql
```
2015-11-04 05:53:29 +01:00
Now continue with the All Systems instructions below.
2015-10-06 16:03:17 +02:00
All Systems:
```
2015-09-25 20:51:41 +02:00
pip install -r requirements.txt
2015-10-06 02:27:25 +02:00
./tools/download-zxcvbn
2015-09-30 08:28:14 +02:00
./tools/emoji_dump/build_emoji
2015-10-06 02:27:25 +02:00
./scripts/setup/generate_secrets.py -d
2015-10-06 02:15:10 +02:00
sudo cp ./puppet/zulip/files/postgresql/zulip_english.stop /usr/share/postgresql/9.3/tsearch_data/
2015-09-25 20:51:41 +02:00
./scripts/setup/configure-rabbitmq
2015-10-14 00:54:17 +02:00
./tools/postgres-init-dev-db
2015-09-25 20:51:41 +02:00
./tools/do-destroy-rebuild-database
2015-09-30 08:28:14 +02:00
./tools/postgres-init-test-db
2015-10-06 03:19:27 +02:00
./tools/do-destroy-rebuild-test-database
2015-09-25 20:51:41 +02:00
```
2015-06-10 20:57:08 +02:00
To start the development server:
2015-09-25 20:51:41 +02:00
```
./tools/run-dev.py
```
2015-06-10 20:57:08 +02:00
2015-10-06 16:03:17 +02:00
… and visit [http://localhost:9991/ ](http://localhost:9991/ ).
2015-06-10 20:57:08 +02:00
Running the test suite
======================
2015-09-20 00:50:55 +02:00
Run all tests:
2015-09-25 20:51:41 +02:00
```
./tools/test-all
```
2015-06-10 20:57:08 +02:00
2015-10-17 20:16:13 +02:00
This runs the linter (`tools/lint-all`) plus all of our test suites;
they can all be run separately (just read `tools/test-all` to see
them). You can also run individual tests which can save you a lot of
time debugging a test failure, e.g.:
2015-09-25 20:51:41 +02:00
```
./tools/test-backend zerver.test_bugdown.BugdownTest.test_inline_youtube
./tools/test-js-with-casper 10-navigation.js
2015-10-17 20:16:13 +02:00
./tools/test-js-with-node # Runs all node tests but is very fast
2015-09-25 20:51:41 +02:00
```
2015-06-10 20:57:08 +02:00
2015-09-30 08:28:14 +02:00
The above instructions include the first-time setup of test databases,
but you may need to rebuild the test database occasionally if you're
working on new database migrations. To do this, run:
```
./tools/postgres-init-test-db
./tools/do-destroy-rebuild-test-database
```
2015-09-26 23:02:28 +02:00
Possible testing issues
=======================
2015-06-10 20:57:08 +02:00
2015-09-30 08:28:14 +02:00
- The Casper tests are flaky on the Virtualbox environment (probably
due to some performance-sensitive races; they work reliably in
Travis CI). Until this issue is debugged, you may need to rerun
them to get them to pass.
2015-09-20 00:50:55 +02:00
2015-09-30 08:28:14 +02:00
- When running the test suite, if you get an error like this:
2015-09-25 20:51:41 +02:00
2015-09-28 02:19:26 +02:00
```
sqlalchemy.exc.ProgrammingError: (ProgrammingError) function ts_match_locs_array(unknown, text, tsquery) does not exist
LINE 2: ...ECT message_id, flags, subject, rendered_content, ts_match_l...
^
```
2015-09-30 08:28:14 +02:00
… then you need to install tsearch-extras, described
above. Afterwards, re-run the `init*-db` and the
`do-destroy-rebuild*-database` scripts.
2015-09-25 20:51:41 +02:00
2015-09-28 02:19:26 +02:00
- When building the development environment using Vagrant and the LXC provider, if you encounter permissions errors, you may need to `chown -R 1000:$(whoami) /path/to/zulip` on the host before running `vagrant up` in order to ensure that the synced directory has the correct owner during provision. This issue will arise if you run `id username` on the host where `username` is the user running Vagrant and the output is anything but 1000.
This seems to be caused by Vagrant behavior; more information can be found here https://github.com/fgrehm/vagrant-lxc/wiki/FAQ#help-my-shared-folders-have-the-wrong-owner
2015-09-23 06:43:29 +02:00
2015-09-25 05:53:43 +02:00
License
=======
Copyright 2011-2015 Dropbox, Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
The software includes some works released by third parties under other
free and open source licenses. Those works are redistributed under the
license terms under which the works were received. For more details,
see the ``THIRDPARTY`` file included with this distribution.