https://github.com/stylet/stableman
https://github.com/stylet/stableman
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/stylet/stableman
- Owner: StyleT
- Created: 2026-02-12T02:59:26.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2026-02-12T03:17:34.000Z (4 months ago)
- Last Synced: 2026-02-12T13:15:40.171Z (4 months ago)
- Language: Python
- Size: 5.86 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# stableman 🐴
A basic Streamlit application.
## Getting Started
### Prerequisites
- Python 3.8 or higher
- pip
### Installation
1. Clone this repository:
```bash
git clone https://github.com/StyleT/stableman.git
cd stableman
```
1. Create and activate a virtual environment:
```bash
python3 -m venv .venv
source .venv/bin/activate
```
1. Install the required dependencies:
```bash
pip install -r requirements.txt
```
### Running the App
To run the Streamlit app locally:
```bash
streamlit run streamlit_app.py
```
The app will open in your default web browser at `http://localhost:8501`.
## Deploying to Streamlit Cloud
This app can be easily deployed to Streamlit Cloud:
1. Push your code to GitHub
2. Go to [share.streamlit.io](https://share.streamlit.io)
3. Sign in with your GitHub account
4. Select your repository and branch
5. Set the main file path to `streamlit_app.py`
6. Click "Deploy"
## Features
- Simple text input interaction
- Slider component
- Selectbox dropdown
- Button with animation
## Learn More
- [Streamlit Documentation](https://docs.streamlit.io)
- [Streamlit Community](https://discuss.streamlit.io)