https://github.com/saadjs/unbg
https://github.com/saadjs/unbg
Last synced: 4 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/saadjs/unbg
- Owner: saadjs
- License: mit
- Created: 2025-05-05T02:26:51.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-05-05T03:22:38.000Z (about 1 year ago)
- Last Synced: 2025-05-05T03:29:42.324Z (about 1 year ago)
- Language: CSS
- Size: 7.81 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# unbg
A simple Flask app to remove background from images using [rembg](https://github.com/danielgatis/rembg).
## Development
Clone the repo
```bash
git clone git@github.com:saadjs/unbg.git
cd unbg
```
Create and activate virtual environment
```bash
# Create a new virtual environment
python -m venv venv
source venv/bin/activate
```
Install the required dependencies
```bash
pip install -r requirements.txt
```
To run the dev server
```bash
make dev
```
This will start the Flask dev server with debugging on `http://0.0.0.0:8080`.