Closed akmorrow13 closed 3 years ago
The index.py
was removed in this PR: https://github.com/plotly/dash-bio/pull/459
This is the specific commit that removed index.py
: https://github.com/plotly/dash-bio/commit/ec969d2cccdb4eab1d9b0549372b477bc18bdd92
The PR gives more detail, but it was essentially removed since each of the apps have been deployed separately. I think it's still possible to access the individual apps (which are now located inside of tests
for some reason). For example for dash-alignment
:
python3 -m venv venv_alignment
# or: python -m venv venv_alignment
source venv_alignment/bin/activate
cd tests/dashbio_demos/dash-alignment-charts
pip3 install -r requirements.txt # or pip
python3 app.py # or python
Unless there was some deployment errors the demos should be available here:
Describe the bug
https://github.com/plotly/dash-bio/blob/master/CONTRIBUTING.md testing documentation is out of date. It says to run
python index.py
but there is noindex.py
file.To Reproduce
Try running
python index.py
(no file)Expected behavior
There should be an index.py file.