Skip to content
📖 The Official Dash Userguide
Branch: master
Clone or download
Latest commit 78313a8 Apr 1, 2019
Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
.circleci
assets
images
pdf-docs Add updated version of docs with new Dash DAQ css changes. Jan 16, 2019
reusable_components
tests
tutorial
.gitignore
LICENSE Create LICENSE (#63) Feb 1, 2018
Procfile
README.md Update README.md Mar 6, 2019
app.json
contributing-dds.md
dash_search_index.py
generate-sitemap.py
requirements.txt
run.py
runtime.txt dcc examples and reference sections Sep 4, 2017
server.py

README.md

Dash Userguide

The Dash Userguide: everything that you need to know to be productive with Dash.

The Dash Userguide is hosted online at: https://plot.ly/dash. A PDF version is also available.

Running an app locally

To run an app locally:

  1. (optional) create and activate new virtualenv or conda env (Python 2.7):
pip install virtualenv
virtualenv venv
source venv/bin/activate

or, with conda:

conda create --yes -n dash_docs python=2.7
source activate dash_docs
  1. pip install -r requirements.txt
  2. gunicorn run:server
  3. open http://127.0.0.1:8000 in your browser

on Windows systems waitress can be a replacement for gunicorn

  1. pip install waitress
  2. waitress-serve --listen=*:8000 run:server
  3. open http://127.0.0.1:8000 in your browser

Contributing

PRs accepted! The Dash user guide is itself a Dash app. Each file in tutorial represents a "chapter" of the docs.

Changes to master will get deployed automatically.

You can’t perform that action at this time.