Go to file
Tim Abbott e5f7000a23 Add description of Zulip at top of README.md.
Based on PR #22 by GedLawrenson.
2015-09-26 18:07:06 -07:00
analytics Simplify analytics code to not filter certain low-interest users/realms. 2015-09-19 23:42:28 -07:00
api rss: Support feeds that don't provide any sort of timestamp. 2015-09-25 03:57:51 -07:00
assets Remove pre-built emoji images from version control. 2015-09-25 00:22:15 -07:00
bin Improve shell quoting hygiene 2015-09-25 23:25:08 -04:00
bots Fix typo in jabber mirror error 2015-09-26 22:03:00 +00:00
confirmation enterprise => voyager 2015-08-21 10:33:35 -07:00
corporate Remove corporate beta signup form 2015-08-20 18:40:34 -07:00
docs Add readthedocs requirements.txt. 2015-09-25 10:53:47 -07:00
node_modules Upgrade handlebars to 1.3.0. 2014-01-15 16:07:20 -05:00
puppet Improve shell quoting hygiene 2015-09-25 23:25:08 -04:00
scripts install: Remote the python-django-guardian hack. 2015-09-26 18:01:18 -07:00
static Add announcement of open sourcing to certain zulip.com pages. 2015-09-25 12:07:55 -07:00
templates Link to settings page with absolute path, rather than explicitly zulip.com 2015-09-25 22:59:35 -04:00
tools Improve shell quoting hygiene 2015-09-25 23:25:08 -04:00
zerver Fix TypeError in Google OAuth authenticator. 2015-09-26 13:51:27 -07:00
zilencer Modernize management command for deactivating a realm. 2015-09-19 19:10:27 -07:00
zproject Remove confusing EMAIL_HOST_PASSWORD setting in SMTP configuration. 2015-09-26 17:48:21 -07:00
.gitattributes enterprise: Don't include templates/zilencer in our tarballs 2013-11-15 11:53:49 -05:00
.gitignore Download zxcvbn.js rather than vendoring it. 2015-09-25 02:24:07 -07:00
LICENSE License disclosures and project licensing. 2015-09-25 00:44:19 -07:00
README.md Add description of Zulip at top of README.md. 2015-09-26 18:07:06 -07:00
README.prod.md Rename zulip-enteprise.{key,combined-chain.crt} to drop -enterprise. 2015-09-24 19:08:52 -07:00
THIRDPARTY Download zxcvbn.js rather than vendoring it. 2015-09-25 02:24:07 -07:00
Vagrantfile Run provision.py as a provisioner. 2015-08-19 21:07:22 -07:00
manage.py logging: Log management commands that are run. 2013-11-20 14:31:08 -05:00
provision.py Download zxcvbn.js rather than vendoring it. 2015-09-25 02:24:07 -07:00
requirements.txt Remove pre-built emoji images from version control. 2015-09-25 00:22:15 -07:00
zulip_tools.py Move su_to_zulip into zulip_tools.py 2013-11-13 16:56:59 -05:00

README.md

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 at https://www.zulip.org

Contributing to Zulip

Zulip welcomes all forms of contributions!

Before a pull request can be merged, you need to to sign the Dropbox Contributor License Agreement.

Please run the tests (tools/test-all) before submitting your pull request and read our commit message style guidelines.

Zulip has a growing collection of developer documentation including detailed documentation on coding style available on Read The Docs.

Zulip also has a development discussion mailing list

Feel free to send any questions or suggestions of areas where you'd love to see more documentation to the list!

We recommend sending proposals for large features or refactorings to the zulip-devel list for discussion and advice before getting too deep into implementation.

Please report any security issues you discover to support@zulip.com.

Running Zulip in production

This is documented in https://zulip.org/server.html and README.prod.md.

Installing the Zulip Development environment

Using Vagrant

This is the recommended approach, and is tested on OS X 10.10 as well as Ubuntu 14.04.

Once that's done, simply change to your zulip directory and run vagrant up in your terminal. That will install the development server inside a Vagrant guest.

Once that finishes, you can run the development server as follows:

vagrant ssh -- -L9991:localhost:9991
# Now inside the container
cd /srv/zulip
source /srv/zulip-venv/bin/activate
./tools/run-dev.py --interface=''

You can now visit http://localhost:9991/ in your browser. To get shell access to the virtual machine running the server, use vagrant ssh.

(A small note on tools/run-dev.py: the --interface='' option will make 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).

The run-dev.py console output will show any errors your Zulip development server encounters. It runs on top of Django's "manage.py runserver" tool, which will automatically restart the Zulip server whenever you save changes to Python code.

By hand

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

On Debian or Ubuntu systems:

sudo apt-get install libffi-dev memcached rabbitmq-server libldap2-dev redis-server postgresql-server-dev-all libmemcached-dev

# 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

# Then, all versions:
pip install -r requirements.txt
./scripts/setup/configure-rabbitmq
./tools/postgres-init-db
./tools/do-destroy-rebuild-database
./tools/emoji_dump/build_emoji

To start the development server:

./tools/run-dev.py

… and hit http://localhost:9991/.

Running the test suite

One-time setup of test databases:

./tools/postgres-init-test-db
./tools/do-destroy-rebuild-test-database

Run all tests:

./tools/test-all

This runs the linter 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, e.g.:

./tools/test-backend zerver.test_bugdown.BugdownTest.test_inline_youtube
./tools/test-js-with-casper 10-navigation.js

Possible testing issues

The Casper tests are flaky on the Virtualbox environment (probably due to some performance-sensitive races). Until this issue is debugged, you may need to rerun them to get them to pass.

When running the test suite, if you get an error like this:

    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...
                                                                 ^

… then you need to install tsearch-extras, described above. Afterwards, re-run the init*-db and the do-destroy-rebuild*-database scripts.

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.