A full-stack application to build professional resumes using AI.
- Frontend: React + Vite + TailwindCSS
- Backend: Node.js + Express
- Database: MongoDB
- AI: Google Gemini API
cd server
npm install
npm startCreates server at http://localhost:3000
cd client
npm install
npm run devStarts client at http://localhost:5173
Create .env files in both folders:
Server (server/.env):
PORT=3000
MONGODB_URI=your_mongodb_url
JWT_SECRET=your_secret_key
OPENAI_API_KEY=your_gemini_keyClient (client/.env):
VITE_BASE_URL=http://localhost:3000- Frontend: Deployed on Vercel
- Backend: Deployed on Render