Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 11 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,18 @@ nano .env
Webpage built with streamlit, that displays some live statistics about bitcoin network. Try it [here](https://bumblebee00-data-analysis-on-chain-kk5uep.streamlit.app/)

### Run the dashboard

**With Poetry:**
poetry run streamlit run dashboard/On-chain.py
**With pip (without Poetry):**

Make sure to run this command from the **project root**, not from inside the `dashboard/` folder:

```bash
streamlit run dashboard/On-chain.py
```
poetry run streamlit run dashboard/On-chain.py
```

> ⚠️ Running `streamlit run On-chain.py` from inside the `dashboard/` folder will cause a `FileNotFoundError`.

Access the [streamlit](https://streamlit.io/) web page in your browser at http://localhost:8501.

Expand Down