scrapy/docs
nyov 7ae37d61f9 remove scrapy deploy command
(closes #1027, #1095, #1102)
2015-04-20 20:35:06 -03:00
..
_ext added issue role to documentation 2012-08-31 18:39:30 -03:00
_static DOC remove css file which isno longer needed 2015-04-15 03:44:49 +05:00
experimental added documentation (experimental feature) 2013-03-06 06:36:23 +11:00
intro Merge pull request #1172 from bagratte/docs 2015-04-19 21:41:29 +05:00
topics remove scrapy deploy command 2015-04-20 20:35:06 -03:00
utils Added linkfix script to docs/utils 2015-03-18 19:41:26 -03:00
Makefile Add linkfix rule to docs Makefile 2015-03-18 20:00:03 -03:00
README DOC update docs readme file - sphinx >= 1.3 is now required. 2015-04-15 11:50:57 +05:00
conf.py DOC make local docs use the same theme as readthedocs.org 2015-04-15 03:43:30 +05:00
contributing.rst Fix some redirection links in documentation 2015-03-18 19:41:26 -03:00
faq.rst improve scrapy deploy documentation 2015-04-09 17:39:01 -03:00
index.rst improve scrapy deploy documentation 2015-04-09 17:39:01 -03:00
news.rst Add 0.24.6 release notes 2015-04-20 01:40:21 -03:00
versioning.rst updated versioning doc according to recent changes 2012-01-05 11:50:28 -02:00

README

======================================
Scrapy documentation quick start guide
======================================

This file provides a quick guide on how to compile the Scrapy documentation.


Setup the environment
---------------------

To compile the documentation you need Sphinx Python library. To install it
and all its dependencies run

::

    pip install 'Sphinx >= 1.3'


Compile the documentation
-------------------------

To compile the documentation (to classic HTML output) run the following command
from this dir::

    make html

Documentation will be generated (in HTML format) inside the ``build/html`` dir.


View the documentation
----------------------

To view the documentation run the following command::

    make htmlview

This command will fire up your default browser and open the main page of your
(previously generated) HTML documentation.


Start over
----------

To cleanup all generated documentation files and start from scratch run::

    make clean

Keep in mind that this command won't touch any documentation source files.