- Professional Templates - Choose from multiple ATS-friendly CV templates
- AI-Powered Review - Get intelligent feedback on your CV content and structure
- Responsive Design - Works seamlessly on desktop, tablet, and mobile devices
- Privacy First - Your data stays with you - no tracking, no data collection
- Multiple Export Formats - Download as PDF or DOC format
- ATS Optimization - Built-in ATS compatibility analysis
- Customizable - Accent colors and template variations
- 100% Open Source - AGPLv3 licensed, community-driven development
- Modern Tech Stack - React 18, TypeScript, Tailwind CSS, FastAPI
- Real-time Preview - See changes instantly as you type
- Drag & Drop Sections - Reorder CV sections with ease
- Self-hostable - Deploy on your own infrastructure
- Node.js (v18 or higher)
- Python (v3.13 or higher)
- pnpm (recommended) or npm or yarn
- Ollama (for AI review functionality)
-
Clone the repository
git clone https://github.com/dannyyol/cvforge.git cd cvforge -
Install and set up Ollama (for AI review functionality)
macOS:
# Download and install from https://ollama.ai # Or using Homebrew: brew install ollama
Linux:
curl -fsSL https://ollama.ai/install.sh | shWindows:
# Download installer from https://ollama.aiStart Ollama and pull a model:
# Start Ollama service ollama serve -
Set up the frontend (Client)
cd client pnpm install # or npm install
4.4. Set up the backend (Server)
cd ../server
pip install -r requirements.txt- Configure environment variables
# In the server directory cp env.example .env # Edit .env with your preferred settings
-
Start the backend server
cd server python -m uvicorn src.main:app --reload --host 127.0.0.1 --port 8000 -
Start the frontend development server
cd client pnpm dev # or npm run dev
-
Open your browser Navigate to
http://localhost:5173to start building your CV!
CVForge includes a thumbnail generation system for template previews. Here's how to generate thumbnails:
- Ensure both frontend and backend servers are running
- The application should be accessible at
http://localhost:5173
-
Make sure the development server is running
cd client pnpm dev -
Run the thumbnail generation script
cd client pnpm generate-thumbnails
The thumbnail generation script:
- Uses Puppeteer to take screenshots of each template
- Generates thumbnails at 400x500 resolution
- Saves thumbnails to
client/public/thumbnails/ - Supports templates: classic, modern, minimalist, professional
You can customize the thumbnail generation by modifying client/scripts/generate-thumbnails.mjs:
// Customize viewport and thumbnail dimensions
const VIEWPORT_WIDTH = 800;
const VIEWPORT_HEIGHT = 1000;- Personal Details - Add your contact information and photo
- Professional Summary - Write a compelling summary of your experience
- Work Experience - Add your employment history with achievements
- Education - Include your educational background
- Skills - List your technical and soft skills
- Projects - Showcase your notable projects
- Certifications - Add relevant certifications and awards
The AI Review feature provides:
- Overall Score - Comprehensive CV rating (0-100)
- ATS Compatibility - How well your CV works with applicant tracking systems
- Content Quality - Analysis of your CV content and structure
- Section-by-Section Feedback - Detailed suggestions for each section
- Strengths & Improvements - What's working well and what needs work
- Templates - Choose from multiple professional templates
- Accent Colors - Customize the color scheme (template dependent)
- Section Ordering - Drag and drop to reorder CV sections
- Content Formatting - Rich text editing for descriptions
CVForge is licensed under the GNU Affero General Public License v3.0 (AGPLv3).
- Free and Open Source - You can use, modify, and distribute CVForge freely
- Commercial use allowed - You can use CVForge in your business
- Modification allowed - You can modify the source code to suit your needs
- Distribution allowed - You can distribute original or modified versions
- Copyleft requirement - Any modifications must also be licensed under AGPLv3
- Network copyleft - If you run a modified version as a web service, you must provide the source code to users
- Source code disclosure - If you distribute the software or run it as a web service, you must make the source code available
- Same license - Any derivative works must be licensed under AGPLv3
- Copyright notices - You must preserve all copyright and license notices
- Network provision - Users of your web service must be able to download the source code
The AGPL ensures that CVForge remains free and open source, even when used as a web service. This prevents proprietary forks and ensures that improvements benefit the entire community.
- Official License Text: GNU AGPL v3.0
- License Guide: Choose a License - AGPL-3.0
- FSF Explanation: Why the Affero GPL
- License Comparison: GPL vs AGPL vs LGPL
- Practical Guide: Understanding AGPL
For the full license text, see the LICENSE file in this repository.