π― Discover Your Perfect Career Path with AI-Powered Intelligence
A cutting-edge AI-Powered Personalized Career & Skills Advisor web application that helps individuals discover their ideal career paths through intelligent analysis of their skills, interests, and goals. Built with Flask, powered by Groq AI (Llama 3.3-70b), and featuring a beautiful glassmorphism UI with dark/light themes.
-
π Secure Authentication System
- User registration and login with SHA256+salt encryption
- Session-based authentication with secure cookie handling
- Password reset with verification codes
- Optional email integration for password recovery
-
π€ AI-Powered Career Advisor
- Groq API integration with Llama 3.3-70b-versatile model
- Intelligent fallback to CSV dataset (700+ career entries)
- Real-time conversational AI chat interface
- Context-aware career recommendations
-
π― Smart Skill Matching Engine
- Advanced algorithm matching user skills to career paths
- 700+ career entries across 73 unique career paths
- Multi-skill career suggestions with match scoring
- Industry-aligned competency mapping
-
π Interactive Career Dashboard
- Visual skill-to-career recommendations
- Flip card animations for career details
- Dynamic filtering and search capabilities
- Required skills breakdown for each career
-
π Modern UI/UX Design
- Stunning glassmorphism design system
- Smooth dark/light theme toggle
- Responsive mobile-first layout
- Font Awesome icons with hover animations
- Pop-up effects and color transitions
-
π¬ Real-Time AI Chat
- Interactive career counseling
- Personalized guidance and advice
- Quick suggestion buttons
- Message history with timestamps
-
π Curated Learning Resources
- Links to 20+ top learning platforms
- Coursera, edX, LinkedIn Learning, Udemy
- Platform-specific courses and certifications
- Free and paid options included
-
π₯ Personalized User Profiles
- Gender-based emoji avatars
- Customizable user preferences
- Profile statistics and insights
- Account management features
-
π± Progressive Web App
- Fast loading with optimized assets
- Smooth animations and transitions
- Cross-browser compatibility
- Mobile-optimized touch interactions
-
π Enterprise-Ready Security
- Environment variable configuration
- HTTPS/TLS ready for production
- CSRF protection via Flask sessions
- Secure database operations
# Create virtual environment
python -m venv venv
source venv/bin/activate # Windows: venv\Scripts\activate
# Install dependencies
pip install -r requirements.txt# Copy template
cp .env.example .env
# Generate secure values
python -c "import secrets; print(secrets.token_hex(16))" # For APP_SECRET
python -c "import secrets; print(secrets.token_hex(8))" # For PW_SALTEdit .env with:
APP_SECRET: Your generated secret key πPW_SALT: Your generated salt π§GROQ_API_KEY: Optional, get from https://console.groq.com π€MAIL_USERNAME: your_mail@email.com π§MAIL_PASSWORD: Optional, for Gmail password reset π¬
python app.py
# Visit: http://localhost:5000 πCareer_Go/
βββ π app.py # Main Flask application with routes & API
βββ π requirements.txt # Python dependencies (Flask, Groq, etc.)
βββ π .env # Environment variables (not in git)
βββ π .env.example # Environment template for setup
βββ π README.md # Project documentation (this file)
βββ π INSTRUCTIONS.md # Detailed technical documentation
βββ βοΈ LICENSE # MIT License
βββ πΎ career.db # SQLite database (auto-generated)
β
βββ π data/ # Dataset files
β βββ skills_careers.csv # 700+ career & skills mappings
β βββ learning_links.json # Curated learning platform links
β
βββ π¨ templates/ # Jinja2 HTML templates
β βββ base.html # Base template with navigation
β βββ index.html # Landing page with hero section
β βββ signup.html # User registration form
β βββ login.html # User login form
β βββ forgot.html # Password reset request
β βββ profile.html # User profile page
β βββ dashboard.html # Career recommendations dashboard
β βββ chat.html # AI chat interface
β βββ about.html # About Career Go
β βββ faq.html # Frequently asked questions
β βββ privacy.html # Privacy policy
β βββ terms.html # Terms of service
β βββ 404.html # Not found error page
β βββ 500.html # Server error page
β
βββ π¨ static/ # Static assets
βββ css/
β βββ styles.css # Glassmorphism styles & themes
βββ js/
βββ main.js # Form handlers & interactions
βββ theme.js # Dark/light mode toggle
-
π Backend Framework: Flask 3.0.3
- RESTful API design
- Session-based authentication
- Jinja2 templating engine
- WSGI application server
-
πΎ Database Layer: Dual database support
- SQLite (local development)
- PostgreSQL (production via DATABASE_URL)
- Automatic table initialization
- Secure query execution
-
π Security Implementation
- SHA256+salt password hashing
- Session-based user authentication
- Environment variable management
- CSRF protection via Flask sessions
- Secure cookie handling
-
π€ AI Integration
- Groq API with Llama 3.3-70b-versatile model
- Intelligent fallback to CSV dataset
- Context-aware responses
- Conversation history management
-
π¨ Frontend Stack
- HTML5 semantic markup
- CSS3 with glassmorphism effects
- Vanilla JavaScript (ES6+)
- Font Awesome 6.5.1 icons
- Responsive design principles
-
π Data Processing
- CSV parsing for career data
- JSON handling for learning resources
- Advanced skill matching algorithms
- Real-time filtering and search
Users Table
id(INTEGER PRIMARY KEY)username(TEXT UNIQUE)email(TEXT UNIQUE)gender(TEXT)password_hash(TEXT)created_at(TIMESTAMP)
Resets Table
id(INTEGER PRIMARY KEY)email(TEXT)code(TEXT)created_at(TIMESTAMP)
POST /api/signup- π Register new accountPOST /api/login- π Login to accountPOST /api/forgot-email- π¬ Request password reset codePOST /api/reset- π Reset password with codePOST /api/logout- πͺ Logout and clear session
POST /api/suggest_careers- π― Get career suggestions based on skillsPOST /api/chat- π¬ Send message to AI or datasetGET /profile- π€ View user profile
GET /- π HomeGET /dashboard- π Career dashboardGET /chat- π¬ Chat interfaceGET /about- βΉοΈ About pageGET /faq- π FAQGET /privacy- π Privacy policyGET /terms- βοΈ Terms of service
- Flask 3.0.3 - Modern Python web framework
- Python 3.8+ - Programming language
- SQLite / PostgreSQL - Database management
- Groq API - AI language model integration
- psycopg2-binary - PostgreSQL adapter
- python-dotenv - Environment variable management
- Flask-Mail - Email functionality
- HTML5 - Semantic markup
- CSS3 - Modern styling with glassmorphism
- JavaScript (ES6+) - Interactive functionality
- Font Awesome 6.5.1 - Icon library
- Google Fonts - Inter typeface
- Glassmorphism UI - Modern glass-effect design
- Dark/Light Themes - User preference support
- Responsive Layout - Mobile-first approach
- CSS Animations - Smooth transitions and effects
- Custom Color Schemes - Carefully selected palette
- Git - Version control
- GitHub - Repository hosting
- VS Code - Recommended IDE
- Gunicorn - Production WSGI server
- Virtual Environment - Python dependency isolation
-
π Password Security
- SHA256 hashing with custom salt
- Secure password storage
- No plaintext password storage
-
πͺ Session Management
- Secure session cookies
- Server-side session storage
- Automatic session expiration
-
βοΈ Email Validation
- Format validation
- Duplicate prevention
- Reset code generation
-
π Environment Security
- Sensitive data in .env file
- .env excluded from version control
- Environment variable validation
-
π‘οΈ Application Security
- HTTPS/TLS ready
- CSRF protection via Flask sessions
- SQL injection prevention
- XSS protection through Jinja2 escaping
-
π« Access Control
- Route-level authentication checks
- Session-based authorization
- Protected API endpoints
- 73 Unique Career Paths covering modern job market
- 700+ Skill Combinations with detailed mappings
- Industry Categories:
- πΌ Traditional Tech: Data Scientist, Full-Stack Developer, DevOps Engineer
- π Emerging Fields: AI Ethics Consultant, Climate Tech Engineer, Web3 Developer
- π¬ Specialized Domains: Quantum Engineer, Biotech Researcher, EdTech Specialist
- π¨ Creative Tech: UX/UI Designer, Game Developer, AR/VR Developer
- π Data & Analytics: Business Intelligence Analyst, ML Engineer, Data Engineer
- π₯ Health Tech: HealthTech Developer, Medical Software Engineer
- π° FinTech: Blockchain Developer, Financial Systems Analyst
- π Impact Tech: Sustainability Engineer, Social Impact Analyst
20+ Curated Platforms including:
- π MOOCs: Coursera, edX, LinkedIn Learning, Udemy, Udacity
- βοΈ Cloud Training: Google Cloud Skills, AWS Training, Microsoft Learn, IBM Skills
- π» Coding Platforms: FreeCodeCamp, Codecademy, DataCamp, Kaggle, Khan Academy
- π¨ Design & Creative: Behance, Dribbble, Adobe Learn
- π¬ Specialized: Pluralsight, Skillshare, Treehouse
# Start development server
python app.py
# Access application
# π http://localhost:5000- Connect your GitHub repository
- Add PostgreSQL database service
- Set environment variables:
APP_SECRET,PW_SALTDATABASE_URL(auto-set by Railway)GROQ_API_KEY(optional)MAIL_USERNAME,MAIL_PASSWORD(optional)
- Deploy automatically from main branch
- Create new Web Service from GitHub
- Build Command:
pip install -r requirements.txt - Start Command:
gunicorn app:app - Add PostgreSQL database
- Set environment variables (same as Railway)
- Install Fly CLI:
curl -L https://fly.io/install.sh | sh - Run:
fly launch - Add PostgreSQL:
fly postgres create - Attach database:
fly postgres attach - Set environment variables:
fly secrets set
# Required
APP_SECRET=your_32_char_secret_key
PW_SALT=your_16_char_salt
# Optional but recommended
GROQ_API_KEY=gsk_xxxxx # For AI features
DATABASE_URL=postgresql://... # Auto-set on cloud platforms
# Optional for email
MAIL_USERNAME=your.email@gmail.com
MAIL_PASSWORD=your_app_password# Install production server
pip install gunicorn
# Run with 4 worker processes
gunicorn -w 4 -b 0.0.0.0:5000 app:app
# Or with more options
gunicorn -w 4 --threads 2 --timeout 120 app:appπ΄ Port Already in Use
# Find process using port 5000
# Windows
netstat -ano | findstr :5000
taskkill /PID <process_id> /F
# Linux/Mac
lsof -ti:5000 | xargs kill -9ποΈ Database Errors
# Delete database and restart (loses data)
rm career.db
python app.py
# Or backup first
cp career.db career.db.backup
rm career.db
python app.pyπ§ Email Not Sending
- Verify Gmail App Password (not regular password)
- Enable 2-factor authentication on Gmail
- Go to: https://myaccount.google.com/apppasswords
- Create app password for "Mail"
- Use generated password in
.env(remove spaces)
π€ AI Chat Not Working
- Check
GROQ_API_KEYin.env - Verify API key at: https://console.groq.com/keys
- App will automatically fallback to CSV dataset if AI fails
- Check console logs for specific error messages
π Session Issues
- Clear browser cookies
- Verify
APP_SECRETis set in.env - Restart Flask application
- Check browser console for errors
πΎ PostgreSQL Connection Errors
- Verify
DATABASE_URLformat:postgresql://user:pass@host:port/db - Check psycopg2-binary is installed
- Ensure PostgreSQL service is running
- Review database logs
π¨ CSS/JS Not Loading
- Clear browser cache (Ctrl+Shift+R / Cmd+Shift+R)
- Check static file paths in templates
- Verify Flask static folder configuration
- Check browser console for 404 errors
π MIT License - See LICENSE file for full details.
Copyright (c) 2025 Career Go
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software.
We welcome contributions! Here's how you can help:
- π΄ Fork the repository
- πΏ Create your feature branch:
git checkout -b feature/AmazingFeature - πΎ Commit your changes:
git commit -m 'β¨ Add some AmazingFeature' - π€ Push to the branch:
git push origin feature/AmazingFeature - π Open a Pull Request
- Write clear, descriptive commit messages with emojis
- Follow existing code style and conventions
- Add comments for complex logic
- Update documentation as needed
- Test your changes thoroughly
- π Career Data: Compiled from industry research and job market analysis
- π Learning Resources: Curated from top educational platforms worldwide
- π€ AI Technology: Powered by Groq (Llama 3.3-70b-versatile model)
- π¨ Design Inspiration: Modern glassmorphism and neumorphism trends
- π οΈ Built With: Flask, Python, and passionate dedication to career development
- π‘ Community: Thanks to all contributors and users providing feedback
- π§ Email: babinbid05@gmail.com
- π Issues: Report bugs on GitHub Issues
- π¬ Discussions: Join GitHub Discussions for questions
- β Star this repo if you find it helpful!
- π Multi-language support (i18n)
- π± Mobile app (React Native / Flutter)
- π LinkedIn profile integration
- π Career progression tracking
- π Course recommendation engine
- π₯ Community forum and networking
- π Advanced analytics dashboard
- π€ Voice-based career counseling
- π€ Mentor matching system
- πΌ Job board integration
Made with β€οΈ by Babin Bid who care about your career success
Last Updated: 22nd December, 2025 | Contact: babinbid05@gmail.com