2016-08-25 07:00:46 +02:00
|
|
|
# Installing directly on Ubuntu
|
|
|
|
|
2016-07-15 20:01:07 +02:00
|
|
|
Start by cloning this repository: `git clone
|
|
|
|
https://github.com/zulip/zulip.git`
|
|
|
|
|
2016-08-25 07:00:46 +02:00
|
|
|
If you'd like to install a Zulip development environment on a computer
|
|
|
|
that's already running Ubuntu 14.04 Trusty or Ubuntu 16.04 Xenial, you
|
|
|
|
can do that by just running:
|
2016-07-15 20:01:07 +02:00
|
|
|
|
|
|
|
```
|
2016-08-25 07:00:46 +02:00
|
|
|
# From a clone of zulip.git
|
|
|
|
./tools/provision.py
|
2016-07-15 20:01:07 +02:00
|
|
|
source /srv/zulip-venv/bin/activate
|
2016-08-25 07:00:46 +02:00
|
|
|
./tools/run-dev.py # starts the development server
|
2016-07-15 20:01:07 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
Note that there is no supported uninstallation process without Vagrant
|
|
|
|
(with Vagrant, you can just do `vagrant destroy` to clean up the
|
|
|
|
development environment).
|
2016-08-25 07:00:46 +02:00
|
|
|
|
|
|
|
Once you've done the above setup, you can pick up the [documentation
|
|
|
|
on using the Zulip development
|
|
|
|
environment](dev-env-first-time-contributors.html#step-4-developing),
|
|
|
|
ignoring the parts about `vagrant` (since you're not using it).
|