AIO PDF Tools is a versatile web application designed to simplify PDF management through a user-friendly interface.
Initially developed as a command-line interface (CLI) tool, it has evolved into a robust web application utilizing Flask, Docker, and Vercel hostinglive website.
This project aims to enhance skills in web application development while providing essential features for handling PDF files. Contributions are encouraged to improve both the backend and frontend functionalities.
git clone https://github.com/your-username/AIO-PDF-tools-web
cd AIO-PDF-tools-web
python -m venv venv
On Windows:
venv\Scripts\activate
source venv/bin/activate
pip install -r requirements.txt
python app.py
The application will be accessible at http://localhost:5000.
If you choose to set up using Docker, follow these steps:
docker build -t flaskapp .
For Windows:
docker run -d -p 5000:5000 -v %cd%:/app flaskapp
For Unix-based systems (Linux/macOS):
docker run -d -p 5000:5000 -v $(pwd):/app flaskapp