An open-source, self-hostable CV generator tool that creates professional, ATS-friendly resumes using YAML and LaTeX.
- Form-Based Editor: Edit your CV content with a user-friendly form interface.
- YAML Support: Full control via a split-screen YAML editor.
- Real-time Preview: See changes instantly (auto-renders on load and valid updates).
- Multiple Templates: Includes Classic, Modern, Sb2nov, and Engineering templates.
- ATS Friendly: Generates standard LaTeX-based PDFs.
- Node.js & npm
- Python 3.10+
- LaTeX Distribution (TexLive Full recommended)
cd backend
python -m venv venv
# Windows
venv\Scripts\activate
# Linux/Mac
source venv/bin/activate
pip install -r requirements.txt
python main.pyBackend runs on http://localhost:8000.
cd frontend
npm install
npm run devFrontend runs on http://localhost:5173.
See deployment_guide.md for detailed instructions on deploying to a VPS (Ubuntu/Nginx).