A web app for removing background images from images. Built with flask and bootstrap.
Download the code
$ git clone https://github.com/app-generator/cama-bg-remover.git
$ cd cama-bg-remover
Install modules via
VENV
(windows)
$ virtualenv env
$ .venv\Scripts\activate
$ pip3 install -r requirements.txt
Set Up Flask Environment
$ # CMD
$ set FLASK_APP=app.py
$ set FLASK_ENV=development
$
$ # Powershell
$ $env:FLASK_APP = ".\app.py"
$ $env:FLASK_ENV = "development"
Start the app
$ flask run
// OR
$ flask run --cert=adhoc # For HTTPS server
//OR
$ py app.py
At this point, the app runs at http://127.0.0.1:5000/
.
Make sure to give this repo a Star ⭐