dash-docs
dash-docs copied to clipboard
Update index.py
This is to add some clarity to the pytest examples by removing some possible confusion as to what the original bsly001 is for new developers. Additionally, the documentation for using docker containers should make it easier to use local standalone-chrome/firefox on the local machine.
Post-merge checklist:
The master branch is auto-deployed to dash.plotly.com.
Once you have merged your PR, wait 5-10 minutes and check dash.plotly.com
to verify that your changes have been made.
- [ x ] I understand
If this PR documents a new feature of Dash:
- [ x ] Comment on the original Dash issue with a link to the new docs.
- [ x ] Reply to any community thread(s) asking for this feature.
If this PR includes a new dataset available at a remote URL:
- [ x ] I have added this dataset to the
datasets/folder - [ x ] I have added a mapping between the remote URL and the filename in the
datasets/folder into thefind_and_replacedict indash_docs/tools.py
If this PR adds an image or animated GIF:
- [ x ] This image was saved and referenced locally rather than via an external link
If I introduced a new relative link inside dcc.Markdown:
- [ x ] I considered whether I could replace the
dcc.Markdowncall withrc.Markdown, which will replace relative links withtools.relpathinternally. Otherwise, I used e.g.<dccLink href=tools.relpath('/layout') children="the first chapter"/>instead of[the first chapter](/layout)(importingtoolsfromdash_docs), and setdangerously_allow_html=truein thedcc.Markdowncall.
If I changed the chapter_index by removing or relocating a page:
- [ x ] I added a redirect in
dash_docs/server.pyfrom the old URL to the new URL