Tails is a web-based image processing tool that allows users to blur images beautifully and intuitively.
No coding skills required — it features a minimal, user-friendly interface. Future updates will include a wider range of image editing functions.
- Upload up to 10 images at once
- Customize output image size freely
- Supports downloading in JPG and PNG formats
- Temporary storage (cleared on browser reload)
- Minimal, modern UI inspired by Apple design
git clone https://github.com/your-username/tailstroke.git
cd tailstroke
python -m venv .venv
source .venv/bin/activate # On Windows: .venv\Scripts\activate
pip install -r requirements.txtpython app.pyOpen the browser and go to:
http://127.0.0.1:5000
- Go to https://dashboard.render.com/
- Click New > Web Service
- Connect your GitHub repository
- Set the following parameters:
- Environment: Python
- Build Command:
pip install -r requirements.txt - Start Command:
python app.py - Runtime: Python 3.x
- Instance Type: Free or Starter (depending on usage)
- In the Advanced Settings, add this environment variable:
PORT=10000(or as needed)
Once deployed, you'll get a public URL like https://your-app-name.onrender.com.
tailstroke/
├── app.py # Main Flask app
├── templates/
│ └── index.html # Frontend (Jinja2 template)
├── static/
│ ├── style.css # CSS styling
│ ├── sample/ # Before/After sample images
│ └── tmp/ # Temporary upload folder
├── .gitignore
├── requirements.txt
└── README.md
MIT License