2016-07-15 20:43:09 +02:00
|
|
|
Using the Development Environment
|
|
|
|
=================================
|
|
|
|
|
2020-01-14 20:13:59 +01:00
|
|
|
This page describes the basic edit/refresh workflows for working with
|
2020-01-17 00:56:39 +01:00
|
|
|
the Zulip development environment. Generally, the development
|
|
|
|
environment will automatically update as soon as you save changes
|
|
|
|
using your editor. Details for work on the [server](#server),
|
|
|
|
[webapp](#web), and [mobile apps](#mobile) are below.
|
2020-01-14 20:13:59 +01:00
|
|
|
|
2020-01-17 00:56:39 +01:00
|
|
|
If you're working on authentication methods or need to use the [Zulip
|
|
|
|
REST API][rest-api], which requires an API key, see [authentication in
|
|
|
|
the development environment][authentication-dev-server].
|
2016-07-15 20:43:09 +02:00
|
|
|
|
2020-01-17 09:00:09 +01:00
|
|
|
## Common
|
2016-07-15 20:43:09 +02:00
|
|
|
|
2020-01-17 09:00:09 +01:00
|
|
|
* Zulip's master branch moves quickly, and you should rebase
|
|
|
|
constantly with e.g. `git fetch upstream; git rebase
|
|
|
|
upstream/master` to avoid developing on an old version of the Zulip
|
|
|
|
codebase (leading to unnecessary merge conflicts).
|
|
|
|
* Remember to run `tools/provision` to update your development
|
|
|
|
environment after switching branches; it will run in under a second
|
|
|
|
if no changes are required.
|
2020-01-17 00:56:39 +01:00
|
|
|
* After making changes, you'll often want to run the
|
|
|
|
[linters](../testing/linters.md) and relevant [test
|
2020-01-17 09:00:09 +01:00
|
|
|
suites](../testing/testing.md). Consider using our [Git pre-commit
|
|
|
|
hook](../git/zulip-tools.html#set-up-git-repo-script) to
|
|
|
|
automatically lint whenever you make a commit.
|
|
|
|
* All of our test suites are designed to support quickly testing just
|
|
|
|
a single file or test case, which you should take advantage of to
|
|
|
|
save time.
|
|
|
|
* Many useful development tools, including tools for rebuilding the
|
|
|
|
database with different test data, are documented in-app at
|
|
|
|
`https://localhost:9991/devtools`.
|
|
|
|
* If you want to restore your development environment's database to a
|
|
|
|
pristine state, you can use `./tools/do-destroy-rebuild-database`.
|
2016-07-15 20:43:09 +02:00
|
|
|
|
2020-01-17 00:56:39 +01:00
|
|
|
## Server
|
2020-01-14 20:13:59 +01:00
|
|
|
|
2020-01-17 00:56:39 +01:00
|
|
|
* For changes that don't affect the database model, the Zulip
|
|
|
|
development environment will automatically detect changes and
|
|
|
|
restart:
|
|
|
|
* The main Django/Tornado server processes are run on top of
|
|
|
|
Django's [manage.py runserver][django-runserver], which will
|
|
|
|
automatically restart them when you save changes to Python code
|
|
|
|
they use. You can watch this happen in the `run-dev.py` console
|
|
|
|
to make sure the backend has reloaded.
|
|
|
|
* The Python queue workers will also automatically restart when you
|
2020-01-17 09:00:09 +01:00
|
|
|
save changes, as long as they haven't crashed (which can happen if
|
|
|
|
they reloaded into a version with a syntax error).
|
2020-01-17 00:56:39 +01:00
|
|
|
* If you change the database schema (`zerver/models.py`), you'll need
|
|
|
|
to use the [Django migrations
|
2020-01-17 09:00:09 +01:00
|
|
|
process](../subsystems/schema-migrations.md); see also the [new
|
|
|
|
feature tutorial][new-feature-tutorial] for an example.
|
2020-01-17 00:56:39 +01:00
|
|
|
* While testing server changes, it's helpful to watch the `run-dev.py`
|
|
|
|
console output, which will show tracebacks for any 500 errors your
|
2020-01-17 09:00:09 +01:00
|
|
|
Zulip development server encounters (which are probably caused by
|
|
|
|
bugs in your code).
|
|
|
|
* To manually query Zulip's database interactively, use `./manage.py
|
|
|
|
shell` or `manage.py dbshell`.
|
2020-01-17 00:56:39 +01:00
|
|
|
* The database(s) used for the automated tests are independent from
|
|
|
|
the one you use for manual testing in the UI, so changes you make to
|
|
|
|
the database manually will never affect the automated tests.
|
2020-01-14 20:13:59 +01:00
|
|
|
|
2020-01-17 09:00:09 +01:00
|
|
|
## Web application
|
2020-01-14 20:13:59 +01:00
|
|
|
|
2020-01-17 00:56:39 +01:00
|
|
|
* Once the development server (`run-dev.py`) is running, you can visit
|
|
|
|
<http://localhost:9991/> in your browser.
|
|
|
|
* By default, the development server homepage just shows a list of the
|
|
|
|
users that exist on the server and you can login as any of them by
|
|
|
|
just clicking on a user.
|
|
|
|
* This setup saves time for the common case where you want to test
|
|
|
|
something other than the login process.
|
|
|
|
* You can test the login or registration process by clicking the
|
|
|
|
links for the normal login page.
|
2020-01-17 09:00:09 +01:00
|
|
|
* Most changes will take effect automatically. Details:
|
|
|
|
* If you change CSS files, your changes will appear immediately via
|
|
|
|
webpack hot module replacement.
|
|
|
|
* If you change JavaScript code (`static/js`) or Handlebars
|
|
|
|
templates (`static/templates`), the browser window will be
|
|
|
|
reloaded automatically.
|
|
|
|
* For Jinja2 backend templates (`templates/*`), you'll need to reload
|
|
|
|
the browser window to see your changes.
|
2020-01-17 00:56:39 +01:00
|
|
|
* Any JavaScript exceptions encountered while using the webapp in a
|
|
|
|
development environment will be displayed as a large notice, so you
|
|
|
|
don't need to watch the JavaScript console for exceptions.
|
2020-01-17 09:00:09 +01:00
|
|
|
* Both Chrome and Firefox have great debuggers, inspectors, and
|
|
|
|
profilers in their built-in developer tools.
|
|
|
|
* `debug.js` has some occasionally useful JavaScript profiling code.
|
2020-01-14 20:13:59 +01:00
|
|
|
|
2020-01-17 09:00:09 +01:00
|
|
|
## Mobile apps
|
2020-01-14 20:13:59 +01:00
|
|
|
|
|
|
|
See the mobile project's documentation on [using a development server
|
|
|
|
for mobile development][mobile-dev-server].
|
2016-07-15 20:43:09 +02:00
|
|
|
|
2020-01-15 20:32:49 +01:00
|
|
|
[rest-api]: https://zulipchat.com/api/rest
|
|
|
|
[authentication-dev-server]: ./authentication.md
|
2016-07-15 20:43:09 +02:00
|
|
|
[django-runserver]: https://docs.djangoproject.com/en/1.8/ref/django-admin/#runserver-port-or-address-port
|
2019-09-30 19:37:56 +02:00
|
|
|
[new-feature-tutorial]: ../tutorials/new-feature-tutorial.md
|
|
|
|
[testing-docs]: ../testing/testing.md
|
2020-01-14 20:13:59 +01:00
|
|
|
[mobile-dev-server]: https://github.com/zulip/zulip-mobile/blob/master/docs/howto/dev-server.md#using-a-dev-version-of-the-server
|