{"id":24380674,"url":"https://github.com/ehsan-ashik/go-job-tracker-api","last_synced_at":"2025-07-29T05:04:23.867Z","repository":{"id":273165980,"uuid":"916994025","full_name":"ehsan-ashik/go-job-tracker-api","owner":"ehsan-ashik","description":"Job Tracker Backend API - written in Go","archived":false,"fork":false,"pushed_at":"2025-01-29T03:53:35.000Z","size":38,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-12T15:32:11.613Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ehsan-ashik.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2025-01-15T06:35:08.000Z","updated_at":"2025-01-29T03:53:38.000Z","dependencies_parsed_at":"2025-03-12T15:42:17.721Z","dependency_job_id":null,"html_url":"https://github.com/ehsan-ashik/go-job-tracker-api","commit_stats":null,"previous_names":["ehsan-ashik/go-job-tracker-api"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ehsan-ashik/go-job-tracker-api","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ehsan-ashik%2Fgo-job-tracker-api","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ehsan-ashik%2Fgo-job-tracker-api/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ehsan-ashik%2Fgo-job-tracker-api/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ehsan-ashik%2Fgo-job-tracker-api/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ehsan-ashik","download_url":"https://codeload.github.com/ehsan-ashik/go-job-tracker-api/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ehsan-ashik%2Fgo-job-tracker-api/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":267632858,"owners_count":24118748,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-07-29T02:00:12.549Z","response_time":2574,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-01-19T08:27:44.145Z","updated_at":"2025-07-29T05:04:23.851Z","avatar_url":"https://github.com/ehsan-ashik.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Job Application Tracker - Backend API\n\nA robust REST API service built with Go to manage job applications, resumes, and related resources. This backend system provides a comprehensive solution for tracking job applications with support for resume storage in Azure Blob Storage.\n\nFrontend for the application is available in the following repo: https://github.com/ehsan-ashik/react-admin-job-tracker-frontend\n\n## Features\n\n### Core Functionality\n- Complete REST API for job application management\n- Resource management for:\n  - Jobs\n  - Job Descriptions\n  - Job Categories\n  - Companies\n  - Resumes (with PDF storage)\n- Advanced querying capabilities:\n  - Sorting\n  - Pagination\n  - Filtering\n- Flexible resource creation:\n  - Create jobs with associated company and category information\n  - Independent CRUD operations for all resources\n- Azure Blob Storage integration for resume PDFs\n- Multi-part file upload support for resumes\n\n### Technical Features\n- Built with Go Fiber for high performance\n- GORM integration for database operations\n- PostgreSQL database with automatic backups\n- Dockerized deployment\n- Structured logging\n- CORS configuration\n\n## Technical Stack\n\n- **Language**: Go\n- **Framework**: Go Fiber\n- **ORM**: GORM\n- **Database**: PostgreSQL\n- **Cloud Storage**: Azure Blob Storage\n- **Containerization**: Docker \u0026 Docker Compose\n\n## Getting Started\n\n### Prerequisites\n- Docker and Docker Compose\n- Go 1.23\n- PostgreSQL (for local development)\n- Azure Storage Account\n\n### Configuration\n\nCreate a `.env` file in the root directory:\n\n```env\n# Database Configuration\nDB_NAME=\nDB_USER=\nDB_PASSWORD=\nDB_HOST=\nDB_PORT=\n\n# Azure Storage Configuration\nAZURE_ACCESS_KEY=\nAZURE_ACCOUNT_NAME=\nAZURE_CONTAINER_NAME=\n```\n\n### Running the Application\n\n#### Using Docker Compose (Recommended)\n\n1. Build and start the services:\n   ```bash\n   docker-compose up --build\n   ```\n\nThis will start:\n- The API service\n- PostgreSQL database\n- Database backup service\n\n#### Local Development\n\n1. Install dependencies:\n   ```bash\n   go mod download\n   ```\n\n2. Run the application:\n   ```bash\n   go run cmd/main.go\n   ```\n\n## API Documentation\n\n### Available Endpoints\n\n#### Jobs\n- `GET /api/job` - List all jobs (supports pagination, sorting, filtering)\n- `POST /api/job` - Create a new job\n- `GET /api/job/:id` - Get job details\n- `PUT /api/job/:id` - Update job\n- `DELETE /api/job/:id` - Delete job\n\n#### Companies\n- `GET /api/company` - List all companies (supports pagination, sorting, filtering)\n- `POST /api/company` - Create a new company\n- `GET /api/company/:id` - Get company details\n- `PUT /api/company/:id` - Update company\n- `DELETE /api/company/:id` - Delete company\n\n#### Resumes\n- `GET /api/resume` - List all resumes (supports pagination, sorting, filtering)\n- `POST /api/resume` - Create a new resume (multipart form)\n- `GET /api/resume/:id` - Get resume details\n- `PUT /api/resume/:id` - Update resume (multipart form)\n- `DELETE /api/resume/:id` - Delete resume\n\n#### Job Categories\n- `GET /api/job_category` - List all categories (multipart form)\n- `POST /api/job_category` - Create a new category\n- `GET /api/job_category/:id` - Get category details\n- `PUT /api/job_category/:id` - Update category\n- `DELETE /api/job_category/:id` - Delete category\n\n#### Job Descriptions\n- `GET /api/job_description` - List all descriptions (multipart form)\n- `POST /api/job_description` - Create a new job description\n- `GET /api/job_description/:id` - Get job description details\n- `PUT /api/job_description/:id` - Update job description\n- `DELETE /api/job_description/:id` - Delete job description\n\n## License\nThis project is licensed under the MIT License - see the LICENSE file for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fehsan-ashik%2Fgo-job-tracker-api","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fehsan-ashik%2Fgo-job-tracker-api","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fehsan-ashik%2Fgo-job-tracker-api/lists"}