Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Recruit.me

🛠 Tech Stack

Frontend:

  • Framework: Next.js 14 (App Router)
  • Styling: Tailwind CSS
  • Language: JavaScript (React)

Backend:

  • Framework: FastAPI (Python)
  • Database: SQLite
  • Authentication: Custom secure hashing

📁 Project Structure

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

🚀 Quick Start

Prerequisites

  • Python 3.8 or higher
  • Node.js 16 or higher
  • npm or yarn package manager

Backend Setup

  1. Navigate to backend directory

    cd backend
  2. Create and activate virtual environment

    python -m venv venv
    source venv/bin/activate  # On Windows: venv\Scripts\activate
  3. Install Python dependencies

    pip install -r requirements.txt
  4. Start the backend server

    uvicorn app.main:app --reload --port 8001

    🌐 API Server: http://localhost:8001

Frontend Setup

  1. Open new terminal and navigate to frontend

    cd frontend
  2. Install dependencies

    npm install
  3. Start development server

    npm run dev

    🌐 Application: http://localhost:3000

🔄 Workflow

  1. User Registration → Email validation → Account creation
  2. User Login → Credential verification → Session management
  3. Password Reset → Token generation → Secure password update
  4. Error Handling → User-friendly messages → Secure error responses

About

No description, website, or topics provided.

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages