You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
git clone https://github.com/arunkp7/applicant-tracking-system.git
cd applicant-tracking-system
Create PostgreSQL database
CREATEDATABASEats_db;
Update credentials in application.properties
spring.datasource.password=your_password
Run the application
mvn spring-boot:run
API is available at http://localhost:8080
Authentication
All protected endpoints require a Bearer token in the Authorization header:
Authorization: Bearer <your_jwt_token>
Get a token by calling /api/auth/login.
About
A job portal with complex relational data (users, jobs, applications, and resumes), secure file upload/download, advanced search and filtering, and role-based dashboards for admins, recruiters, and candidates.