wagtail/docs
Fernando 30ad03d4ca Update S3 CORS documentation for Boto3 (#6668)
Boto3 has been around for a long time now. Adding a Boto-specific parameter in a tutorial is confusing (it was for me) as people are likely to install Boto3 directly and skip Boto. The `AWS_HEADERS` parameter was replaced by the `AWS_S3_OBJECT_PARAMETERS` parameter in Boto3 and the parameter that controls the access control list specifically is the `ACL`.

By the way, are the instructions on line 50 still relevant today?
2021-01-15 19:42:41 +00:00
..
_static
advanced_topics Update S3 CORS documentation for Boto3 (#6668) 2021-01-15 19:42:41 +00:00
contributing Fix formatting in Development documentation (#6686) 2021-01-13 13:26:41 +00:00
editor_manual
getting_started
reference fix JS code example in hooks docs 2021-01-15 13:18:15 +00:00
releases Implemented a 'choose' permission for Images and Documents (#6466) 2021-01-05 12:23:49 +00:00
topics Implemented a 'choose' permission for Images and Documents (#6466) 2021-01-05 12:23:49 +00:00
Makefile
README.md
autobuild.sh
conf.py
favicon.ico
index.rst
logo.png
requirements.txt
robots.txt
spelling_wordlist.txt
support.rst

README.md

Wagtail docs

These are Sphinx docs, automatically built at https://docs.wagtail.io when the master branch is committed to Github. To build them locally, install Wagtail's development requirements (in the root Wagtail directory):

pip install -e .[testing,docs]

To build the documentation for browsing, from this directory run:

make html 

then open _build/html/index.html in a browser.

To rebuild automatically while editing the documentation, from this directory run:

sphinx-autobuild . _build

The online editor at http://rst.ninjs.org/ is a helpful tool for checking reStructuredText syntax.