diff --git a/.gitignore b/.gitignore index 94824b5..bd1dec1 100644 --- a/.gitignore +++ b/.gitignore @@ -3,4 +3,6 @@ __pycache__/ *.pyo *.pdf .env -.venv \ No newline at end of file +.venv + +!docs/*.pdf \ No newline at end of file diff --git a/README.md b/README.md index e69de29..bdd0edf 100644 --- a/README.md +++ b/README.md @@ -0,0 +1,38 @@ +# Destinos Parser + +Script para rellenar y firmar con certificado la plantilla de peticion de dias de Asuntos Propios o Vacaciones. + +## 📦 Requisitos + +- Python 3.13 o superior +- pip (administrador de paquetes de Python) + +## 🚀 Instalación y ejecución + +Sigue estos pasos para clonar y ejecutar la aplicación: + +### 1. Clona el repositorio +```bash +git clone https://git.fergalla.com/marklogo/Peticiones_RRHH +cd tu-repositorio +``` +### 2. Crea y activa un entorno virtual +```bash +# Linux +python3 -m venv .venv +source .venv/bin/activate + +# Windows +python -m venv .venv +.venv\scripts\activate +``` +### 3. Instala las dependencias +```bash +pip install -r requirements.txt +``` +### 4. Ejecuta el script +```bash +python main.py +``` + +### Uso del script \ No newline at end of file diff --git a/docs/Plantilla.pdf b/docs/Plantilla.pdf new file mode 100644 index 0000000..2a42407 Binary files /dev/null and b/docs/Plantilla.pdf differ