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-webpython -m venv venvOn Windows:
venv\Scripts\activatesource venv/bin/activatepip install -r requirements.txtpython app.pyThe 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 flaskappFor Unix-based systems (Linux/macOS):
docker run -d -p 5000:5000 -v $(pwd):/app flaskapp