- Upload an image
- Remove background
- Show preview of the image with a transparent background
- Download the image with a transparent background as a PNG file
- React
- Tailwind
- shadcn
- Vercel
This application is configured for deployment on Vercel. To deploy:
- Fork or push this repository to GitHub
- Create an account on Vercel if you haven't already
- Create a new project on Vercel and import your GitHub repository
- Configure the following settings:
- Framework Preset: Other
- Build Command:
cd frontend && npm install && npm run build - Output Directory:
frontend/dist
- Add any required environment variables
- Click "Deploy"
The application will be automatically deployed and you'll receive a URL where it's accessible.
- Clone the repository
- Install backend dependencies:
python -m venv venv source venv/bin/activate # On Windows: .\venv\Scripts\activate pip install -r requirements.txt
- Install frontend dependencies:
cd frontend npm install - Start the development servers:
- Backend:
python server.py - Frontend:
cd frontend && npm run dev
- Backend: