https://github.com/dpguthrie/dbtc-streamlit
Streamlit app for the dbtc python package
https://github.com/dpguthrie/dbtc-streamlit
Last synced: 23 days ago
JSON representation
Streamlit app for the dbtc python package
- Host: GitHub
- URL: https://github.com/dpguthrie/dbtc-streamlit
- Owner: dpguthrie
- Created: 2023-02-13T23:40:18.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-07-23T14:55:35.000Z (almost 2 years ago)
- Last Synced: 2025-02-23T03:28:54.813Z (over 1 year ago)
- Language: Python
- Size: 43 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# dbtc-streamlit
## Setup
Create a virtual environment
```
$ virtualenv .venv
```
Install required packages
```
$ pip install -r requirements.txt
```
## Run Streamlit
```
$ streamlit run Home.py
```
## Debuggin in vscode
This will allow you to run the streamlit server in debug mode and create breakpoints in your script.
```json
{
"version": "0.1.0",
"configurations": [
{
"name": "debug streamlit",
"type": "python",
"request": "launch",
"program": "/.venv/bin/streamlit",
"args": [
"run",
"Home.py"
]
}
]
}
```