2017-11-08 17:55:36 +01:00
|
|
|
# Advanced Setup (non-Vagrant)
|
2016-11-28 02:50:33 +01:00
|
|
|
|
|
|
|
Contents:
|
|
|
|
|
2018-12-17 23:34:38 +01:00
|
|
|
* [Installing directly on Ubuntu, Debian, Centos, or Fedora](#installing-directly-on-ubuntu-or-debian)
|
2016-11-28 02:50:33 +01:00
|
|
|
* [Installing manually on Linux](#installing-manually-on-linux)
|
2018-04-02 07:13:38 +02:00
|
|
|
* [Installing directly on cloud9](#installing-on-cloud9)
|
2016-11-28 02:50:33 +01:00
|
|
|
* [Using Docker (experimental)](#using-docker-experimental)
|
|
|
|
|
2018-12-17 23:34:38 +01:00
|
|
|
## Installing directly on Ubuntu, Debian, Centos, or Fedora
|
2016-11-28 02:50:33 +01:00
|
|
|
|
2018-05-30 18:42:03 +02:00
|
|
|
If you'd like to install a Zulip development environment on a computer
|
|
|
|
that's running one of:
|
|
|
|
|
2018-12-17 23:34:38 +01:00
|
|
|
* Ubuntu 18.04 Bionic, 16.04 Xenial, 14.04 Trusty
|
2018-05-30 18:42:03 +02:00
|
|
|
* Debian 9 Stretch
|
2018-12-17 23:34:38 +01:00
|
|
|
* Centos 7 (beta)
|
|
|
|
* Fedora 29 (beta)
|
2018-05-30 18:42:03 +02:00
|
|
|
|
|
|
|
You can just run the Zulip provision script on your machine.
|
|
|
|
|
2018-10-20 05:52:38 +02:00
|
|
|
**Note**: you should not use the `root` user to run the installation.
|
|
|
|
If you are using a [remote server](../development/remote.html), see
|
|
|
|
the
|
|
|
|
[section on creating appropriate user accounts](../development/remote.html#setting-up-user-accounts).
|
|
|
|
|
2018-05-30 18:42:03 +02:00
|
|
|
**Warning**: there is no supported uninstallation process with this
|
|
|
|
method. If you want that, use the Vagrant environment, where you can
|
|
|
|
just do `vagrant destroy` to clean up the development environment.
|
|
|
|
|
2018-02-16 11:42:34 +01:00
|
|
|
Start by [cloning your fork of the Zulip repository][zulip-rtd-git-cloning]
|
|
|
|
and [connecting the Zulip upstream repository][zulip-rtd-git-connect]:
|
2017-10-17 04:13:46 +02:00
|
|
|
|
2018-02-16 11:42:34 +01:00
|
|
|
```
|
|
|
|
git clone --config pull.rebase https://github.com/YOURUSERNAME/zulip.git
|
2018-05-06 11:30:15 +02:00
|
|
|
cd zulip
|
2018-02-16 11:42:34 +01:00
|
|
|
git remote add -f upstream https://github.com/zulip/zulip.git
|
|
|
|
```
|
2016-11-28 02:50:33 +01:00
|
|
|
|
|
|
|
```
|
2018-12-18 14:58:52 +01:00
|
|
|
# On CentOS, you must first install epel-release, and then python34
|
|
|
|
# On Fedora, you must first install python3
|
2016-11-28 02:50:33 +01:00
|
|
|
# From a clone of zulip.git
|
2017-01-14 11:19:26 +01:00
|
|
|
./tools/provision
|
2017-08-09 00:44:40 +02:00
|
|
|
source /srv/zulip-py3-venv/bin/activate
|
2016-11-28 02:50:33 +01:00
|
|
|
./tools/run-dev.py # starts the development server
|
|
|
|
```
|
|
|
|
|
|
|
|
Once you've done the above setup, you can pick up the [documentation
|
|
|
|
on using the Zulip development
|
2017-11-08 17:55:36 +01:00
|
|
|
environment](../development/setup-vagrant.html#step-4-developing),
|
2016-11-28 02:50:33 +01:00
|
|
|
ignoring the parts about `vagrant` (since you're not using it).
|
|
|
|
|
|
|
|
## Installing manually on Linux
|
|
|
|
|
2018-05-30 18:42:03 +02:00
|
|
|
We recommend one of the other installation methods, since we test
|
|
|
|
those continuously. But if you know what you're doing and really want
|
|
|
|
to install everything manually, these instructions should work.
|
2018-05-24 18:47:18 +02:00
|
|
|
|
2016-11-28 02:50:33 +01:00
|
|
|
* [Debian or Ubuntu systems](#on-debian-or-ubuntu-systems)
|
|
|
|
* [Fedora 22 (experimental)](#on-fedora-22-experimental)
|
|
|
|
* [CentOS 7 Core (experimental)](#on-centos-7-core-experimental)
|
|
|
|
* [OpenBSD 5.8 (experimental)](#on-openbsd-5-8-experimental)
|
|
|
|
* [Fedora/CentOS common steps](#common-to-fedora-centos-instructions)
|
|
|
|
* [Steps for all systems](#all-systems)
|
|
|
|
|
|
|
|
### On Debian or Ubuntu systems:
|
|
|
|
|
|
|
|
#### Using the official Ubuntu repositories, PGroonga PPA and `tsearch-extras` deb package:
|
|
|
|
|
2018-02-16 11:42:34 +01:00
|
|
|
Start by [cloning your fork of the Zulip repository][zulip-rtd-git-cloning]
|
|
|
|
and [connecting the Zulip upstream repository][zulip-rtd-git-connect]:
|
2017-10-17 04:13:46 +02:00
|
|
|
|
2018-02-16 11:42:34 +01:00
|
|
|
```
|
|
|
|
git clone --config pull.rebase https://github.com/YOURUSERNAME/zulip.git
|
|
|
|
git remote add -f upstream https://github.com/zulip/zulip.git
|
|
|
|
```
|
2016-11-28 02:50:33 +01:00
|
|
|
|
|
|
|
```
|
|
|
|
sudo apt-get install closure-compiler libfreetype6-dev libffi-dev \
|
|
|
|
memcached rabbitmq-server libldap2-dev redis-server \
|
2017-08-04 02:00:13 +02:00
|
|
|
postgresql-server-dev-all libmemcached-dev python3-dev \
|
2018-05-24 19:56:17 +02:00
|
|
|
python-dev python-virtualenv hunspell-en-us git \
|
|
|
|
yui-compressor puppet gettext postgresql \
|
|
|
|
libssl-dev libxml2-dev libxslt1-dev libjpeg8-dev zlib1g-dev \
|
|
|
|
libcurl4-openssl-dev
|
2016-11-28 02:50:33 +01:00
|
|
|
|
2017-05-22 05:05:03 +02:00
|
|
|
# If using Ubuntu, install PGroonga from its PPA
|
2016-11-28 02:50:33 +01:00
|
|
|
sudo add-apt-repository -ys ppa:groonga/ppa
|
|
|
|
sudo apt-get update
|
|
|
|
# On 14.04
|
|
|
|
sudo apt-get install postgresql-9.3-pgroonga
|
|
|
|
# On 16.04
|
|
|
|
sudo apt-get install postgresql-9.5-pgroonga
|
2018-03-16 21:45:13 +01:00
|
|
|
# On 17.04 or 17.10
|
|
|
|
sudo apt-get install postgresql-9.6-pgroonga
|
2018-05-05 20:07:22 +02:00
|
|
|
# On 18.04
|
|
|
|
sudo apt-get install postgresql-10-pgroonga
|
2016-11-28 02:50:33 +01:00
|
|
|
|
2017-05-22 05:05:03 +02:00
|
|
|
# If using Debian, follow the instructions here: http://pgroonga.github.io/install/debian.html
|
|
|
|
|
2016-11-28 02:50:33 +01:00
|
|
|
# Next, install Zulip's tsearch-extras postgresql extension
|
2018-07-11 18:03:28 +02:00
|
|
|
# If on Ubuntu LTS, you can use the Zulip PPA for tsearch-extras:
|
2016-11-28 02:50:33 +01:00
|
|
|
cd zulip
|
|
|
|
sudo apt-add-repository -ys ppa:tabbott/zulip
|
2016-12-02 03:41:37 +01:00
|
|
|
sudo apt-get update
|
2016-11-28 02:50:33 +01:00
|
|
|
# On 14.04
|
|
|
|
sudo apt-get install postgresql-9.3-tsearch-extras
|
|
|
|
# On 16.04
|
|
|
|
sudo apt-get install postgresql-9.5-tsearch-extras
|
2018-05-05 20:07:22 +02:00
|
|
|
# On 18.04
|
|
|
|
sudo apt-get install postgresql-10-tsearch-extras
|
2016-11-28 02:50:33 +01:00
|
|
|
|
|
|
|
|
2018-07-11 18:03:28 +02:00
|
|
|
# For Debian, you can download a .deb from packagecloud:
|
2018-05-30 18:42:03 +02:00
|
|
|
|
2018-05-05 20:07:22 +02:00
|
|
|
# If on Stretch
|
|
|
|
wget --content-disposition \
|
|
|
|
https://packagecloud.io/zulip/server/packages/debian/stretch/postgresql-9.6-tsearch-extras_0.4_amd64.deb/download.deb
|
|
|
|
sudo dpkg -i postgresql-9.6-tsearch-extras_0.4_amd64.deb
|
2016-11-28 02:50:33 +01:00
|
|
|
```
|
|
|
|
|
|
|
|
Alternatively, you can always build the package from [tsearch-extras
|
|
|
|
git](https://github.com/zulip/tsearch_extras).
|
|
|
|
|
|
|
|
Now continue with the [All Systems](#all-systems) instructions below.
|
|
|
|
|
2018-12-05 14:54:51 +01:00
|
|
|
#### Using the [official Zulip PPA][zulip-ppa] (for 14.04 Trusty, 16.04 Xenial, or 18.04 Bionic):
|
2017-01-06 00:06:34 +01:00
|
|
|
|
|
|
|
[zulip-ppa]: https://launchpad.net/~tabbott/+archive/ubuntu/zulip/+packages
|
2016-11-28 02:50:33 +01:00
|
|
|
|
2018-02-16 11:42:34 +01:00
|
|
|
Start by [cloning your fork of the Zulip repository][zulip-rtd-git-cloning]
|
|
|
|
and [connecting the Zulip upstream repository][zulip-rtd-git-connect]:
|
2017-10-17 04:13:46 +02:00
|
|
|
|
2018-02-16 11:42:34 +01:00
|
|
|
```
|
|
|
|
git clone --config pull.rebase https://github.com/YOURUSERNAME/zulip.git
|
|
|
|
git remote add -f upstream https://github.com/zulip/zulip.git
|
|
|
|
```
|
2016-11-28 02:50:33 +01:00
|
|
|
|
|
|
|
```
|
|
|
|
sudo add-apt-repository ppa:tabbott/zulip
|
|
|
|
sudo apt-get update
|
|
|
|
sudo apt-get install closure-compiler libfreetype6-dev libffi-dev \
|
|
|
|
memcached rabbitmq-server libldap2-dev redis-server \
|
2017-08-04 02:00:13 +02:00
|
|
|
postgresql-server-dev-all libmemcached-dev python3-dev python-dev \
|
2018-05-24 18:45:55 +02:00
|
|
|
hunspell-en-us git yui-compressor \
|
2016-11-28 02:50:33 +01:00
|
|
|
puppet gettext tsearch-extras
|
|
|
|
```
|
|
|
|
|
|
|
|
Now continue with the [All Systems](#all-systems) instructions below.
|
|
|
|
|
|
|
|
### On Fedora 22 (experimental):
|
|
|
|
|
2018-12-17 23:34:38 +01:00
|
|
|
These instructions are both experimental (in terms of stability) and
|
|
|
|
deprecated by the new support for doing this with `tools/provision`
|
|
|
|
above, and are soon to be removed.
|
2016-11-28 02:50:33 +01:00
|
|
|
|
2018-02-16 11:42:34 +01:00
|
|
|
Start by [cloning your fork of the Zulip repository][zulip-rtd-git-cloning]
|
|
|
|
and [connecting the Zulip upstream repository][zulip-rtd-git-connect]:
|
2017-10-17 04:13:46 +02:00
|
|
|
|
2018-02-16 11:42:34 +01:00
|
|
|
```
|
|
|
|
git clone --config pull.rebase https://github.com/YOURUSERNAME/zulip.git
|
|
|
|
git remote add -f upstream https://github.com/zulip/zulip.git
|
|
|
|
```
|
2016-11-28 02:50:33 +01:00
|
|
|
|
|
|
|
```
|
|
|
|
sudo dnf install libffi-devel memcached rabbitmq-server \
|
|
|
|
openldap-devel python-devel redis postgresql-server \
|
|
|
|
postgresql-devel postgresql libmemcached-devel freetype-devel \
|
2018-05-24 18:45:55 +02:00
|
|
|
yuicompressor closure-compiler gettext
|
2016-11-28 02:50:33 +01:00
|
|
|
```
|
|
|
|
|
|
|
|
Now continue with the [Common to Fedora/CentOS](#common-to-fedora-centos-instructions) instructions below.
|
|
|
|
|
|
|
|
### On CentOS 7 Core (experimental):
|
|
|
|
|
2018-12-17 23:34:38 +01:00
|
|
|
These instructions are both experimental (in terms of stability) and
|
|
|
|
deprecated by the new support for doing this with `tools/provision`
|
|
|
|
above, and are soon to be removed.
|
2016-11-28 02:50:33 +01:00
|
|
|
|
2018-02-16 11:42:34 +01:00
|
|
|
Start by [cloning your fork of the Zulip repository][zulip-rtd-git-cloning]
|
|
|
|
and [connecting the Zulip upstream repository][zulip-rtd-git-connect]:
|
2017-10-17 04:13:46 +02:00
|
|
|
|
2018-02-16 11:42:34 +01:00
|
|
|
```
|
|
|
|
git clone --config pull.rebase https://github.com/YOURUSERNAME/zulip.git
|
|
|
|
git remote add -f upstream https://github.com/zulip/zulip.git
|
|
|
|
```
|
2016-11-28 02:50:33 +01: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
|
2018-12-08 22:52:58 +01:00
|
|
|
sudo yum install epel-release
|
2016-11-28 02:50:33 +01:00
|
|
|
|
|
|
|
# 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 \
|
2018-05-24 18:45:55 +02:00
|
|
|
libjpeg-turbo-devel zlib-devel yuicompressor \
|
2016-11-28 02:50:33 +01:00
|
|
|
closure-compiler gettext
|
|
|
|
|
|
|
|
# We need these packages to compile tsearch-extras
|
|
|
|
sudo yum groupinstall "Development Tools"
|
|
|
|
|
|
|
|
# clone Zulip's git repo and cd into it
|
2017-10-17 04:13:46 +02:00
|
|
|
cd && git clone --config pull.rebase https://github.com/zulip/zulip && cd zulip/
|
2016-11-28 02:50:33 +01:00
|
|
|
|
|
|
|
## NEEDS TESTING: The next few DB setup items may not be required at all.
|
|
|
|
# Initialize the postgres db
|
|
|
|
sudo postgresql-setup initdb
|
|
|
|
|
|
|
|
# Edit the postgres settings:
|
|
|
|
sudo vi /var/lib/pgsql/data/pg_hba.conf
|
|
|
|
|
|
|
|
# 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
|
|
|
|
```
|
|
|
|
|
|
|
|
Now continue with the [Common to Fedora/CentOS](#common-to-fedora-centos-instructions) instructions below.
|
|
|
|
|
|
|
|
### On OpenBSD 5.8 (experimental):
|
|
|
|
|
|
|
|
These instructions are experimental and may have bugs; patches
|
|
|
|
welcome!
|
|
|
|
|
2018-02-16 11:42:34 +01:00
|
|
|
Start by [cloning your fork of the Zulip repository][zulip-rtd-git-cloning]
|
|
|
|
and [connecting the Zulip upstream repository][zulip-rtd-git-connect]:
|
2017-10-17 04:13:46 +02:00
|
|
|
|
2018-02-16 11:42:34 +01:00
|
|
|
```
|
|
|
|
git clone --config pull.rebase https://github.com/YOURUSERNAME/zulip.git
|
|
|
|
git remote add -f upstream https://github.com/zulip/zulip.git
|
|
|
|
```
|
2016-11-28 02:50:33 +01:00
|
|
|
|
|
|
|
```
|
|
|
|
doas pkg_add sudo bash gcc postgresql-server redis rabbitmq \
|
2018-05-24 18:45:55 +02:00
|
|
|
memcached libmemcached py-Pillow py-cryptography py-cffi
|
2016-11-28 02:50:33 +01:00
|
|
|
|
|
|
|
# Get tsearch_extras and build it (using a modified version which
|
|
|
|
# aliases int4 on OpenBSD):
|
|
|
|
git clone https://github.com/blablacio/tsearch_extras
|
|
|
|
cd tsearch_extras
|
|
|
|
gmake && sudo gmake install
|
|
|
|
|
|
|
|
# Point environment to custom include locations and use newer GCC
|
|
|
|
# (needed for Node modules):
|
|
|
|
export CFLAGS="-I/usr/local/include -I/usr/local/include/sasl"
|
|
|
|
export CXX=eg++
|
|
|
|
|
|
|
|
# Create tsearch_data directory:
|
|
|
|
sudo mkdir /usr/local/share/postgresql/tsearch_data
|
|
|
|
|
|
|
|
|
|
|
|
# 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/local/share/postgresql/tsearch_data/english.stop
|
|
|
|
sudo touch /usr/local/share/postgresql/tsearch_data/en_us.dict
|
|
|
|
sudo touch /usr/local/share/postgresql/tsearch_data/en_us.affix
|
|
|
|
```
|
|
|
|
|
|
|
|
Finally continue with the [All Systems](#all-systems) instructions below.
|
|
|
|
|
|
|
|
### Common to Fedora/CentOS instructions
|
|
|
|
|
2018-02-16 11:42:34 +01:00
|
|
|
Start by [cloning your fork of the Zulip repository][zulip-rtd-git-cloning]
|
|
|
|
and [connecting the Zulip upstream repository][zulip-rtd-git-connect]:
|
2017-10-17 04:13:46 +02:00
|
|
|
|
2018-02-16 11:42:34 +01:00
|
|
|
```
|
|
|
|
git clone --config pull.rebase https://github.com/YOURUSERNAME/zulip.git
|
|
|
|
git remote add -f upstream https://github.com/zulip/zulip.git
|
|
|
|
```
|
2016-11-28 02:50:33 +01:00
|
|
|
|
|
|
|
```
|
|
|
|
# Build and install postgres tsearch-extras module
|
|
|
|
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
|
|
|
|
|
|
|
|
# Enable automatic service startup after the system startup
|
|
|
|
sudo systemctl enable redis rabbitmq-server memcached postgresql
|
|
|
|
```
|
|
|
|
|
|
|
|
Finally continue with the [All Systems](#all-systems) instructions below.
|
|
|
|
|
|
|
|
### All Systems:
|
|
|
|
|
|
|
|
Make sure you have followed the steps specific for your platform:
|
|
|
|
|
|
|
|
* [Debian or Ubuntu systems](#on-debian-or-ubuntu-systems)
|
|
|
|
* [Fedora 22 (experimental)](#on-fedora-22-experimental)
|
|
|
|
* [CentOS 7 Core (experimental)](#on-centos-7-core-experimental)
|
|
|
|
* [OpenBSD 5.8 (experimental)](#on-openbsd-5-8-experimental)
|
|
|
|
* [Fedora/CentOS](#common-to-fedora-centos-instructions)
|
|
|
|
|
|
|
|
For managing Zulip's python dependencies, we recommend using
|
|
|
|
[virtualenvs](https://virtualenv.pypa.io/en/stable/).
|
|
|
|
|
2017-05-11 13:59:07 +02:00
|
|
|
You must create a Python 3 virtualenv. You must also install appropriate
|
|
|
|
python packages in it.
|
2016-11-28 02:50:33 +01:00
|
|
|
|
2017-05-11 13:59:07 +02:00
|
|
|
You should either install the virtualenv in `/srv`, or put a symlink to it in
|
|
|
|
`/srv`. If you don't do that, some scripts might not work correctly.
|
2016-11-28 02:50:33 +01:00
|
|
|
|
2017-05-11 13:59:07 +02:00
|
|
|
You can run `python3 tools/setup/setup_venvs.py`. This script will create a
|
|
|
|
virtualenv `/srv/zulip-py3-venv`.
|
2016-11-28 02:50:33 +01:00
|
|
|
|
|
|
|
If you want to do it manually, here are the steps:
|
|
|
|
|
|
|
|
```
|
|
|
|
sudo virtualenv /srv/zulip-py3-venv -p python3 # Create a python3 virtualenv
|
|
|
|
sudo chown -R `whoami`:`whoami` /srv/zulip-py3-venv
|
|
|
|
source /srv/zulip-py3-venv/bin/activate # Activate python3 virtualenv
|
|
|
|
pip install --upgrade pip # upgrade pip itself because older versions have known issues
|
2017-11-17 02:41:06 +01:00
|
|
|
pip install --no-deps -r requirements/dev.txt # install python packages required for development
|
2016-11-28 02:50:33 +01:00
|
|
|
```
|
|
|
|
|
|
|
|
Now run these commands:
|
|
|
|
|
|
|
|
```
|
2017-07-08 21:27:25 +02:00
|
|
|
sudo ./scripts/lib/install-node
|
2017-07-27 23:22:52 +02:00
|
|
|
yarn install
|
2017-06-03 00:21:46 +02:00
|
|
|
sudo mkdir /srv/zulip-emoji-cache
|
|
|
|
sudo chown -R `whoami`:`whoami` /srv/zulip-emoji-cache
|
2016-12-28 04:58:41 +01:00
|
|
|
./tools/setup/emoji/build_emoji
|
2017-09-16 14:30:57 +02:00
|
|
|
./tools/inline-email-css
|
2018-08-10 00:32:21 +02:00
|
|
|
./tools/setup/generate-custom-icon-webfont
|
2017-09-26 05:10:46 +02:00
|
|
|
./tools/setup/build_pygments_data
|
2018-12-09 16:13:46 +01:00
|
|
|
./tools/setup/generate_zulip_bots_static_files.py
|
2016-11-28 02:50:33 +01:00
|
|
|
./scripts/setup/generate_secrets.py --development
|
2017-01-05 23:23:16 +01:00
|
|
|
if [ $(uname) = "OpenBSD" ]; then
|
|
|
|
sudo cp ./puppet/zulip/files/postgresql/zulip_english.stop /var/postgresql/tsearch_data/
|
|
|
|
else
|
2018-05-23 21:23:21 +02:00
|
|
|
sudo cp ./puppet/zulip/files/postgresql/zulip_english.stop /usr/share/postgresql/*/tsearch_data/
|
2017-01-05 23:23:16 +01:00
|
|
|
fi
|
2016-11-28 02:50:33 +01:00
|
|
|
./scripts/setup/configure-rabbitmq
|
|
|
|
./tools/setup/postgres-init-dev-db
|
|
|
|
./tools/do-destroy-rebuild-database
|
|
|
|
./tools/setup/postgres-init-test-db
|
|
|
|
./tools/do-destroy-rebuild-test-database
|
|
|
|
./manage.py compilemessages
|
|
|
|
```
|
|
|
|
|
|
|
|
To start the development server:
|
|
|
|
|
|
|
|
```
|
|
|
|
./tools/run-dev.py
|
|
|
|
```
|
|
|
|
|
2017-03-19 13:07:57 +01:00
|
|
|
… and visit <http://localhost:9991/>.
|
2016-11-28 02:50:33 +01:00
|
|
|
|
2018-10-20 06:21:52 +02:00
|
|
|
If you're running your development server on a remote server, look at
|
|
|
|
[the remote development docs][port-forward-setup] for port forwarding
|
|
|
|
advice.
|
|
|
|
|
2016-11-28 02:50:33 +01:00
|
|
|
#### Proxy setup for by-hand installation
|
|
|
|
|
|
|
|
If you are building the development environment on a network where a
|
|
|
|
proxy is required to access the Internet, you will need to set the
|
|
|
|
proxy in the environment as follows:
|
|
|
|
|
|
|
|
- On Ubuntu, set the proxy environment variables using:
|
|
|
|
```
|
|
|
|
export https_proxy=http://proxy_host:port
|
|
|
|
export http_proxy=http://proxy_host:port
|
|
|
|
```
|
|
|
|
|
2017-07-27 23:22:52 +02:00
|
|
|
- And set the yarn proxy and https-proxy using:
|
2016-11-28 02:50:33 +01:00
|
|
|
```
|
2017-07-27 23:22:52 +02:00
|
|
|
yarn config set proxy http://proxy_host:port
|
|
|
|
yarn config set https-proxy http://proxy_host:port
|
2016-11-28 02:50:33 +01:00
|
|
|
```
|
|
|
|
|
2018-02-01 22:58:58 +01:00
|
|
|
## Installing on cloud9
|
|
|
|
|
|
|
|
AWS Cloud9 is a cloud-based integrated development environment (IDE)
|
|
|
|
that lets you write, run, and debug your code with just a browser. It
|
|
|
|
includes a code editor, debugger, and terminal.
|
|
|
|
|
|
|
|
This section documents how to setup the Zulip development environment
|
|
|
|
in a cloud9 workspace. If you don't have an existing cloud9 account,
|
|
|
|
you can sign up [here](https://aws.amazon.com/cloud9/).
|
|
|
|
|
|
|
|
* Create a Workspace, and select the blank template.
|
|
|
|
* Resize the workspace to be 1GB of memory and 4GB of disk
|
|
|
|
space. (This is under free limit for both the old Cloud9 and the AWS
|
|
|
|
Free Tier).
|
|
|
|
* Clone the zulip repo: `git clone --config pull.rebase
|
|
|
|
https://github.com/<your-username>/zulip.git`
|
|
|
|
* Restart rabbitmq-server since its broken on cloud9: `sudo service
|
|
|
|
rabbitmq-server restart`.
|
|
|
|
* And run provision `cd zulip && ./tools/provision`, once this is done.
|
|
|
|
* Activate the zulip virtual environment by `source
|
|
|
|
/srv/zulip-py3-venv/bin/activate` or by opening a new terminal.
|
|
|
|
|
|
|
|
#### Install zulip-cloud9
|
|
|
|
|
|
|
|
There's an NPM package, `zulip-cloud9`, that provides a wrapper around
|
|
|
|
the Zulip development server for use in the Cloud9 environment.
|
|
|
|
|
|
|
|
Note: `npm i -g zulip-cloud9` does not work in zulip's virtual
|
|
|
|
environment. Although by default, any packages installed in workspace
|
|
|
|
folder (i.e. the top level folder) are added to `$PATH`.
|
|
|
|
|
|
|
|
```bash
|
|
|
|
cd .. # switch to workspace folder if you are in zulip directory
|
|
|
|
npm i zulip-cloud9
|
|
|
|
zulip-dev start # to start the development server
|
|
|
|
```
|
|
|
|
|
|
|
|
If you get error of the form `bash: cannot find command zulip-dev`,
|
|
|
|
you need to start a new terminal.
|
|
|
|
|
|
|
|
Your development server would be running at
|
|
|
|
`https://<workspace-name>-<username>.c9users.io` on port 8080. You
|
|
|
|
dont need to add `:8080` to your url, since the cloud9 proxy should
|
|
|
|
automatically forward the connection. You might want to visit
|
|
|
|
[zulip-cloud9 repo](https://github.com/cPhost/zulip-cloud9) and it's
|
|
|
|
[wiki](https://github.com/cPhost/zulip-cloud9/wiki) for more info on
|
|
|
|
how to use zulip-cloud9 package.
|
|
|
|
|
2016-11-28 02:50:33 +01:00
|
|
|
## Using Docker (experimental)
|
|
|
|
|
2018-02-16 11:42:34 +01:00
|
|
|
Start by [cloning your fork of the Zulip repository][zulip-rtd-git-cloning]
|
|
|
|
and [connecting the Zulip upstream repository][zulip-rtd-git-connect]:
|
2017-10-17 04:13:46 +02:00
|
|
|
|
2018-02-16 11:42:34 +01:00
|
|
|
```
|
|
|
|
git clone --config pull.rebase https://github.com/YOURUSERNAME/zulip.git
|
|
|
|
git remote add -f upstream https://github.com/zulip/zulip.git
|
|
|
|
```
|
2016-11-28 02:50:33 +01:00
|
|
|
|
|
|
|
The docker instructions for development are experimental, so they may
|
|
|
|
have bugs. If you try them and run into any issues, please report
|
|
|
|
them!
|
|
|
|
|
|
|
|
You can also use Docker to run a Zulip development environment.
|
|
|
|
First, you need to install Docker in your development machine
|
|
|
|
following the [instructions][docker-install]. Some other interesting
|
|
|
|
links for somebody new in Docker are:
|
|
|
|
|
2017-12-20 20:16:50 +01:00
|
|
|
* [Get Started](https://docs.docker.com/get-started/)
|
|
|
|
* [Understand the architecture](https://docs.docker.com/engine/docker-overview/)
|
2017-01-20 19:59:57 +01:00
|
|
|
* [Docker run reference](https://docs.docker.com/engine/reference/run/)
|
|
|
|
* [Dockerfile reference](https://docs.docker.com/engine/reference/builder/)
|
2016-11-28 02:50:33 +01:00
|
|
|
|
|
|
|
[docker-install]: https://docs.docker.com/engine/installation/
|
|
|
|
|
|
|
|
Then you should create the Docker image based on Ubuntu Linux, first
|
|
|
|
go to the directory with the Zulip source code:
|
|
|
|
|
|
|
|
```
|
2017-09-23 02:28:40 +02:00
|
|
|
docker build -t user/zulipdev -f Dockerfile-dev .
|
2016-11-28 02:50:33 +01:00
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
Commit and tag the provisioned images. The below will install Zulip's dependencies:
|
|
|
|
```
|
|
|
|
docker run -itv $(pwd):/srv/zulip -p 9991:9991 user/zulipdev /bin/bash
|
2017-05-05 11:04:22 +02:00
|
|
|
$ /bin/bash sudo chown -R zulip:zulip /srv/zulip
|
2017-04-24 14:03:03 +02:00
|
|
|
$ /bin/bash /srv/zulip/tools/provision --docker
|
2016-11-28 02:50:33 +01:00
|
|
|
docker ps -af ancestor=user/zulipdev
|
|
|
|
docker commit -m "Zulip installed" <container id> user/zulipdev:v2
|
|
|
|
```
|
|
|
|
|
|
|
|
Now you can run the docker server with:
|
|
|
|
|
|
|
|
```
|
|
|
|
docker run -itv $(pwd):/srv/zulip -p 9991:9991 user/zulipdev:v2 \
|
|
|
|
/srv/zulip/tools/start-dockers
|
|
|
|
```
|
|
|
|
|
|
|
|
You'll want to
|
2017-11-08 17:55:36 +01:00
|
|
|
[read the guide for Zulip development](../development/setup-vagrant.html#step-4-developing)
|
2016-11-28 02:50:33 +01:00
|
|
|
to understand how to use the Zulip development. Note that
|
|
|
|
`start-dockers` automatically runs `tools/run-dev.py` inside the
|
|
|
|
container; you can then visit http://localhost:9991 to connect to your
|
|
|
|
new Zulip Docker container.
|
|
|
|
|
|
|
|
|
|
|
|
To view the container's `run-dev.py` console logs to get important
|
|
|
|
debugging information (and e.g. outgoing emails) printed by the Zulip
|
|
|
|
development environment, you can use:
|
|
|
|
```
|
|
|
|
docker logs --follow <container id>
|
|
|
|
```
|
|
|
|
|
|
|
|
To restart the server use:
|
|
|
|
```
|
|
|
|
docker ps
|
|
|
|
docker restart <container id>
|
|
|
|
```
|
|
|
|
|
|
|
|
To stop the server use:
|
|
|
|
```
|
|
|
|
docker ps
|
|
|
|
docker kill <container id>
|
|
|
|
```
|
|
|
|
|
|
|
|
If you want to connect to the Docker instance to run commands
|
|
|
|
(e.g. build a release tarball), you can use:
|
|
|
|
|
|
|
|
```
|
|
|
|
docker ps
|
|
|
|
docker exec -it <container id> /bin/bash
|
|
|
|
$ source /home/zulip/.bash_profile
|
|
|
|
$ <Your commands>
|
|
|
|
$ exit
|
|
|
|
```
|
|
|
|
|
|
|
|
If you want to run all the tests you need to start the servers first,
|
|
|
|
you can do it with:
|
|
|
|
|
|
|
|
```
|
|
|
|
docker run -itv $(pwd):/srv/zulip user/zulipdev:v2 /bin/bash
|
|
|
|
$ tools/test-all-docker
|
|
|
|
```
|
|
|
|
|
|
|
|
You can modify the source code in your development machine and review
|
|
|
|
the results in your browser.
|
|
|
|
|
|
|
|
|
|
|
|
Currently, the Docker workflow is substantially less convenient than
|
|
|
|
the Vagrant workflow and less documented; please contribute to this
|
|
|
|
guide and the Docker tooling if you are using Docker to develop Zulip!
|
2017-11-23 20:21:57 +01:00
|
|
|
|
|
|
|
[zulip-rtd-git-cloning]: ../git/cloning.html#step-1b-clone-to-your-machine
|
2018-02-16 11:42:34 +01:00
|
|
|
[zulip-rtd-git-connect]: ../git/cloning.html#step-1c-connect-your-fork-to-zulip-upstream
|
2018-10-20 06:21:52 +02:00
|
|
|
[port-forward-setup]: ../development/remote.html#running-the-development-server
|