A free and open source resume builder made for developers. You can quickly put together a simple resume using clean templates and export as a PDF.
- PDF export vectorized and ATS compatible.
- You own your data. All data is stored an local storage of your browser and can be exported and imported.
- Uses JSON Resume standard, so you can import an existing resume.
Simply clone this repo, run npm install
followed by npm run dev
to start a local Vite server.
This application uses serverless firebase cloud functions to export a pdf and can hosted on Firebase.
To get cloud functions working locally follow these steps:
- Create a firebase project.
- Install Firebase CLI.
- Run
firebase init
at the root and make sure to enable "Cloud functions" and "Hosting" services. - Run
firebase init emulators
and make sure to enable the "Functions" emulator - Run
cd functions && npm run serve
to compile, build serverless cloud functions and start the local emulator.