A modern portfolio builder that allows users to create professional profiles from PDF resumes using AI.
- 📄 PDF Resume Upload & Parsing
- 🤖 AI-powered Profile Generation
- 🎨 Beautiful, Customizable Profiles
- 🔗 Custom Profile URLs
- 📱 Responsive Design
- 🔐 Google OAuth Authentication
- 🚀 Real-time Profile Editing
- Node.js 18+
- PostgreSQL database
- Google OAuth credentials
Create a .env.local file in the root directory with the following variables:
# Database
DATABASE_URL="postgresql://username:password@host:port/database"
# NextAuth.js
NEXTAUTH_SECRET="your-nextauth-secret-key-here"
NEXTAUTH_URL="http://localhost:3000"
# Google OAuth
GOOGLE_CLIENT_ID="your-google-client-id"
GOOGLE_CLIENT_SECRET="your-google-client-secret"
# OpenRouter AI
OPENROUTER_API_KEY="your-openrouter-api-key"- Go to Google Cloud Console
- Create a new project or select existing one
- Enable Google+ API
- Go to Credentials → Create Credentials → OAuth 2.0 Client ID
- Set authorized redirect URIs:
- Development:
http://localhost:3000/api/auth/callback/google - Production:
https://yourdomain.com/api/auth/callback/google
- Development:
# Install dependencies
npm install
# Run database migrations
npm run db:push
# Start development server
npm run devOpen http://localhost:3000 with your browser to see the result.
- Push your code to GitHub
- Connect your repository to Vercel
- Add environment variables in Vercel dashboard
- Deploy!
Make sure to update these for production:
NEXTAUTH_URL="https://yourdomain.com"
DATABASE_URL="your-production-database-url"- Framework: Next.js 15 with App Router
- Authentication: NextAuth.js v5
- Database: PostgreSQL with Drizzle ORM
- Styling: Tailwind CSS
- UI Components: Radix UI + shadcn/ui
- AI: OpenRouter API
- Deployment: Vercel
To learn more about Next.js, take a look at the following resources:
- Next.js Documentation - learn about Next.js features and API.
- Learn Next.js - an interactive Next.js tutorial.
You can check out the Next.js GitHub repository - your feedback and contributions are welcome!
The easiest way to deploy your Next.js app is to use the Vercel Platform from the creators of Next.js.
Check out our Next.js deployment documentation for more details.