ClipPDF is a lightweight web app built with Django that allows you to:
- Attach files inside a PDF
- Extract embedded files from a PDF as a ZIP
- Switch languages between Catalan, English, and Spanish
git clone https://github.com/<your-username>/clippdf.git
cd clippdfCopy the example and customize it:
cp .env.example .envExample .env:
SECRET_KEY=change-this-key
DEBUG=False
ALLOWED_HOSTS=localhost,127.0.0.1
CSRF_TRUSTED_ORIGINS=http://localhost,http://127.0.0.1
LANGUAGE_CODE=espython -m venv .venv
source .venv/bin/activatepip install -r requirements.txtpython manage.py runserverOpen your browser at:
http://localhost:8000
Press:
Ctrl + C