https://github.com/hanidam/techhunterclone
https://github.com/hanidam/techhunterclone
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/hanidam/techhunterclone
- Owner: HanidaM
- Created: 2023-11-09T07:00:35.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-11-23T07:08:46.000Z (over 2 years ago)
- Last Synced: 2025-03-27T13:16:41.292Z (over 1 year ago)
- Language: HTML
- Size: 68.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# TechHunterClone
A brief description of the project
This project is a job searching platform that connects job seekers with recruiters. It allows job seekers to find and apply for jobs, while recruiters can post job vacancies and manage applications.
## Tech Stack
- **Programming Language:** Go
- **Web Framework:** Gin
- **ORM:** Gorm
- **Database:** PostgreSQL
- **Caching:** Redis
- **API Documentation:** Swagger
## Project Structure
Below is a high-level overview of the project structure:
Structure described below is known as a "Modular Directory Structure" or "Feature-based Directory Structure"
```
├───docs
│ # Swagger Config files .yml .json
├───src
│ ├───config
│ │ # Configuration files for the application
│ ├───database
│ │ └───migrations
│ │ # Database migration scripts for evolving the database schema
│ │
│ ├───handlers
│ │ ├───jobseeker
│ │ │ # Handlers and controllers specific to jobseeker actions
│ │ └───recruiter
│ │ # Handlers and controllers specific to recruiter actions
│ ├───middlewares
│ │ └───auth
│ │ # Middleware code for authentication (e.g., JWT, sessions)
│ │
│ ├───models
│ │ ├───job
│ │ │ # Models and data structures related to job postings
│ │ └───user
│ │ # Models and data structures related to users, including jobseekers and recruiters
│ ├───routes
│ │ ├───public
│ │ │ # Publicly accessible routes, such as job listings and company profiles
│ │ ├───private
│ │ │ # Protected routes for authenticated users
│ │ └───web
│ │ # Web-specific routes for rendering HTML templates
│ ├───services
│ │ ├───auth_service
│ │ │ # Authentication-related services and functions
│ │ ├───notification
│ │ │ # Services for sending notifications or alerts
│ │ └───search
│ │ # Services related to searching for jobs and resumes
│ └───templates
│ # Templates for rendering HTML pages
└───utils
├───response
│ # Utilities for formatting standardized response data
└───validators
# Utilities for input validation
```