diff options
author | Stephen Finucane <stephen@that.guru> | 2017-05-18 14:42:19 +0100 |
---|---|---|
committer | Stephen Finucane <stephen@that.guru> | 2017-05-18 14:44:41 +0100 |
commit | 1b47510ae8e3f43aa7bf3b80fbbb29aea9b88afa (patch) | |
tree | d25f082a6e5e4ee387dc2a5aa9efe6bb73a0702d /docs/deployment | |
parent | 114ff6061d4005b2458e75da52f3a6cf4ae19bf5 (diff) | |
download | patchwork-1b47510ae8e3f43aa7bf3b80fbbb29aea9b88afa.tar patchwork-1b47510ae8e3f43aa7bf3b80fbbb29aea9b88afa.tar.gz |
docs: Don't mention 'default_project' in deployment guide
The deployment guide currently suggests using the 'default_project'
fixture when deploying a production installation of Patchwork. While one
_could_ use this, it's generally unnecessary given that most people care
about their own projects and not Patchwork.
Resolve this by simply removing any references. The references are
retained for the development installation guide, as they're likely
useful here.
Signed-off-by: Stephen Finucane <stephen@that.guru>
Diffstat (limited to 'docs/deployment')
-rw-r--r-- | docs/deployment/installation.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/deployment/installation.rst b/docs/deployment/installation.rst index 6993f26..16cb41f 100644 --- a/docs/deployment/installation.rst +++ b/docs/deployment/installation.rst @@ -317,13 +317,13 @@ files: .. code-block:: shell $ python3 manage.py migrate - $ python3 manage.py loaddata default_tags default_states default_projects $ sudo python3 manage.py collectstatic + $ python3 manage.py loaddata default_tags default_states .. note:: - The above ``default_tags``,``default_states``, and ``default_projects`` are - just that: defaults. You can modify these to fit your own requirements. + The above ``default_tags`` and ``default_states`` fixtures above are just + that: defaults. You can modify these to fit your own requirements. Finally, it may be helpful to start the development server quickly to ensure you can see *something*. For this to function, you will need to add the |