diff options
| author | Adam Tauber <asciimoo@gmail.com> | 2016-04-21 14:42:32 +0200 |
|---|---|---|
| committer | Adam Tauber <asciimoo@gmail.com> | 2016-04-21 14:42:32 +0200 |
| commit | 3e351e3b9f819d5383fd1ebafd906fdbe0c3d086 (patch) | |
| tree | 9dd3b451b00ff48590efdd725640d4763647c990 /docs/dev/quickstart.rst | |
| parent | 20b1f1ba8b5dbc416308e39f1e2025e17e19b55d (diff) | |
| parent | b40d7a2b36014f8db825c06350ed84db7eed67d5 (diff) | |
Merge pull request #544 from kvch/gh-pages
install docs update && dev tips
Diffstat (limited to 'docs/dev/quickstart.rst')
| -rw-r--r-- | docs/dev/quickstart.rst | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/docs/dev/quickstart.rst b/docs/dev/quickstart.rst index edca8af5e..92ef62385 100644 --- a/docs/dev/quickstart.rst +++ b/docs/dev/quickstart.rst @@ -1,3 +1,5 @@ +.. _devquickstart: + Development Quickstart ---------------------- @@ -88,3 +90,19 @@ After installing grunt, the files can be built using the following command: .. code:: sh ./manage.sh build_grunt + + + +Tips for debugging/development +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +1. Turn on debug logging + Whether you are working on a new engine or trying to eliminate a bug, it is always a good idea + to turn on debug logging. When debug logging is enabled a stack trace appears, + instead of the cryptic ``Internal Server Error`` message. It can be turned on by setting + ``debug: False`` to ``debug: True`` in settings.yml. + +2. Run ``./manage.sh tests`` before creating a PR. + Failing build on Travis is common because of PEP8 checks. So a new commit must be created + containing these format fixes. This phase can be skipped if ``./manage.sh tests`` is run + locally before creating a PR. |