Frontend:
- Framework: Next.js 14 (App Router)
- Styling: Tailwind CSS
- Language: JavaScript (React)
Backend:
- Framework: FastAPI (Python)
- Database: SQLite
- Authentication: Custom secure hashing
Recruit.me/
├── 📂 backend/ # FastAPI Backend
│ ├── 📂 app/
│ │ └── 🐍 main.py # Main application file
│ ├── 📄 requirements.txt # Python dependencies
│ └── 🗃️ auth.db # SQLite database
├── 📂 frontend/ # Next.js Frontend
│ ├── 📂 app/
│ │ ├── 📄 layout.js # Root layout
│ │ ├── 📂 login/
│ │ ├── 📂 signup/
│ │ ├── 📂 forgot-password/
│ │ ├── 📂 reset-password/
│ │ └── 📂 components/
│ ├── 📄 package.json # Node.js dependencies
│ └── ⚙️ next.config.js # Next.js configuration
└── 📄 README.md # Project documentation
- Python 3.8 or higher
- Node.js 16 or higher
- npm or yarn package manager
-
Navigate to backend directory
cd backend -
Create and activate virtual environment
python -m venv venv source venv/bin/activate # On Windows: venv\Scripts\activate
-
Install Python dependencies
pip install -r requirements.txt
-
Start the backend server
uvicorn app.main:app --reload --port 8001
🌐 API Server: http://localhost:8001
-
Open new terminal and navigate to frontend
cd frontend -
Install dependencies
npm install
-
Start development server
npm run dev
🌐 Application: http://localhost:3000
- User Registration → Email validation → Account creation
- User Login → Credential verification → Session management
- Password Reset → Token generation → Secure password update
- Error Handling → User-friendly messages → Secure error responses