https://github.com/rsmuthu/fastapi-applicant-tracker
Simple Applicant Job tracker system using Python FastAPI & Vue.js
https://github.com/rsmuthu/fastapi-applicant-tracker
fastapi python3 vue2
Last synced: about 2 months ago
JSON representation
Simple Applicant Job tracker system using Python FastAPI & Vue.js
- Host: GitHub
- URL: https://github.com/rsmuthu/fastapi-applicant-tracker
- Owner: RSMuthu
- License: mit
- Created: 2020-10-09T06:35:34.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-10-11T21:55:34.000Z (over 5 years ago)
- Last Synced: 2025-07-09T23:39:13.587Z (12 months ago)
- Topics: fastapi, python3, vue2
- Language: Vue
- Homepage:
- Size: 416 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# FastAPI-Applicant-Tracker
Simple Applicant Job tracker system using Python FastAPI & Vue.js
## Backend
- Python 3.8
- FastAPI
- Pydantic
## Frontend
- Vue.js
- Axios
- VueCookies
- BootstrapVue
Currently, the client and the server are made to run on localhost on two different ports. FastAPI CORS is configured for the same purpose.
API Endpoints
- /api/jobs [GET] -- list all jobs
- /api/job [POST] -- Create new job
- /api/job/{job_id} [GET] -- list the particular job
- /api/job/{job_id} [PUT] -- Apply for a certain job (updating a job)
- /api/job/{job_id} [DELETE] -- Delete the particular job
Ways to Improve:
- Proper Authentication - JWT (currently no authentication is used but the pageview is based on type of user connected - recruiter or candidate)
- Update the definition of User Modal and User Scheme with the data as needed.
- ORM modals & relationships need to be updated to make this more scalable.
- Add more endpoints to perform necessary activities with User Modal.
- Considering I am still a beginner in Vue.js, Frontend can be made even more better using Vue-router.
- Middleware can be re-defined for making this an advanced application.
Application working screenshots
- Login Page (no auth is programmed for simplicity use)\

- Candidate View Page (Based on the user selected on Login page)\

- Modal view of a Job on Candidate's page\

- Recruiter View Page (Based on the user selected on Login Page)\

- Modal View for entering new Job details on Recruiter's page

This application is not deployed yet.\
**_Further, Shall work on the Deployment_**