https://github.com/nirjan-dev/jobgettr
An app to craft custom resumes for each job and track your job applications
https://github.com/nirjan-dev/jobgettr
Last synced: 4 months ago
JSON representation
An app to craft custom resumes for each job and track your job applications
- Host: GitHub
- URL: https://github.com/nirjan-dev/jobgettr
- Owner: nirjan-dev
- Created: 2023-11-15T11:25:13.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-06-11T05:33:50.000Z (about 2 years ago)
- Last Synced: 2025-08-03T19:41:51.180Z (11 months ago)
- Language: Vue
- Homepage: https://jobgettr.vercel.app/
- Size: 567 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Job Gettr app
This is a job application tracking app which has the following features
- Track all the job openings that you've applied for
- Create custom resumes for each job
- Use AI to get recommendations to improve your resume for each job based on the job description (requires an OpenAI API key)
- Keep track of a list of skills you want to learn to improve your career prospects and how many times those skills show up on jobs you're applying to. This could help you prioritize what to learn first.
All the data is stored locally on your browser so nothing is sent to the server (including your OpenAI API key). This does mean there is no syncing across browsers and devices at the moment (this is a planned feature for the future.)
## Technologies used
- Nuxt 3
- Vue 3
- Naive UI
- Pinia
- Langchain.js
- Puppeteer
## Getting started
- clone the project locally
- make sure you're using the same version of node that's specified in the .nvmrc file
- install the dependencies with npm install
- run the app with npm run dev
## deployment
Most of the app is just a single page application that uses Nuxt so it should run in most places and even with SSG, however, the resume download button requires a server endpoint which uses puppeteer to create a resume pdf and downloads it. So, if you want that feature then you either need a full node server or you can deploy it to a provider that supports serverless functions (tested successfully on vercel). Here is a [live version of the app](https://jobgettr.vercel.app/) running on vercel.