{"id":32517339,"url":"https://github.com/srish-ty/job-portal-server","last_synced_at":"2026-07-09T05:31:52.106Z","repository":{"id":298727296,"uuid":"1000908091","full_name":"Srish-ty/Job-Portal-server","owner":"Srish-ty","description":"API for job application portal","archived":false,"fork":false,"pushed_at":"2025-06-13T10:08:20.000Z","size":70,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-10-28T02:55:33.125Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Srish-ty.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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,"zenodo":null}},"created_at":"2025-06-12T14:01:05.000Z","updated_at":"2025-06-13T10:08:22.000Z","dependencies_parsed_at":"2025-06-12T15:22:33.783Z","dependency_job_id":"7b9baa83-379e-4b64-97a2-98efa8d33502","html_url":"https://github.com/Srish-ty/Job-Portal-server","commit_stats":null,"previous_names":["srish-ty/job-portal-server"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Srish-ty/Job-Portal-server","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Srish-ty%2FJob-Portal-server","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Srish-ty%2FJob-Portal-server/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Srish-ty%2FJob-Portal-server/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Srish-ty%2FJob-Portal-server/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Srish-ty","download_url":"https://codeload.github.com/Srish-ty/Job-Portal-server/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Srish-ty%2FJob-Portal-server/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":35288805,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-07-09T02:00:07.329Z","response_time":57,"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-10-28T02:55:31.462Z","updated_at":"2026-07-09T05:31:52.083Z","avatar_url":"https://github.com/Srish-ty.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n# 🧠 Job Portal Backend\n\nA Spring Boot-based RESTful backend for a simple Job Portal. Users can register, log in, view jobs, and apply. Companies can post jobs. All data is stored using JPA with an H2 in-memory database.\n\n---\n\n## 🚀 Features\n\n- User registration and login (email + password)\n- Company creation and job posting\n- Users can apply to jobs\n- REST APIs using Spring Web\n- ORM with Spring Data JPA\n- In-memory H2 database\n- Lombok for boilerplate-free models\n\n---\n\n## 🗂️ Project Structure\n\n```\njob-portal/\n├── controller/\n├── model/\n├── repository/\n├── service/\n├── config/\n└── JobPortalApplication.java\n```\n\n---\n\n## 🧾 Entity Schemas\n\n### 👤 1. `User`\n\n| Field       | Type    | Description                  |\n|-------------|---------|------------------------------|\n| id          | Long    | Primary key                  |\n| name        | String  | User's full name             |\n| email       | String  | User email (unique)          |\n| password    | String  | Hashed password              |\n| resumeLink  | String  | Link to resume               |\n| applications| List    | Applications by this user    |\n\n---\n\n### 🏢 2. `Company`\n\n| Field     | Type    | Description                  |\n|-----------|---------|------------------------------|\n| id        | Long    | Primary key                  |\n| name      | String  | Company name                 |\n| website   | String  | Website URL                  |\n| jobs      | List    | Jobs posted by the company   |\n\n---\n\n### 📄 3. `Job`\n\n| Field       | Type     | Description                 |\n|-------------|----------|-----------------------------|\n| id          | Long     | Primary key                 |\n| title       | String   | Job title                   |\n| description | String   | Job description             |\n| location    | String   | Job location                |\n| postedAt    | DateTime | When job was posted         |\n| company     | Company  | Reference to the company    |\n\n---\n\n### 📬 4. `Application`\n\n| Field     | Type     | Description                 |\n|-----------|----------|-----------------------------|\n| id        | Long     | Primary key                 |\n| appliedAt | DateTime | Timestamp of application    |\n| user      | User     | Reference to applying user  |\n| job       | Job      | Reference to the job        |\n\n---\n\n## 🔧 Technologies Used\n\n- Java 21\n- Spring Boot\n- Spring Data JPA\n- H2 Database\n- Lombok\n- Postman (for testing)\n\n---\n\n## 🧪 Example API Endpoints\n\n| Method | Endpoint                 | Description                   |\n|--------|--------------------------|-------------------------------|\n| POST   | `/api/auth/signup`       | Register new user             |\n| POST   | `/api/companies`         | Create new company            |\n| POST   | `/api/jobs`              | Post a job                    |\n| POST   | `/api/applications`      | Apply to a job                |\n| GET    | `/api/jobs`              | Get all jobs                  |\n| GET    | `/api/applications`      | Get all applications          |\n\n---\n\n## 🔑 Authentication\n\nCurrently, the backend uses simple email+password login. No JWT or session handling is implemented yet. All endpoints are **public** for simplicity.\n\n---\n\n## 🛠️ Run Locally\n\n```bash\n./gradlew bootRun\n```\n\nAccess H2 console:  \n➡️ http://localhost:8080/h2-console  \nUse JDBC URL: `jdbc:h2:mem:testdb`\n\n---\n\n## 📬 Sample Request Body (Signup)\n\n```json\n{\n  \"name\": \"Srishty\",\n  \"email\": \"srishty@example.com\",\n  \"password\": \"mypassword\"\n}\n```\n\n---\n\n## 📌 Future Improvements\n\n- Add JWT authentication\n- Input validations \u0026 DTOs\n- Company user roles\n- File upload for resumes\n\n---\n\n## 🧑‍💻 Author\n\nMade with ❤️ by Srishty M.\n\n---\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsrish-ty%2Fjob-portal-server","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsrish-ty%2Fjob-portal-server","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsrish-ty%2Fjob-portal-server/lists"}