{"id":23278579,"url":"https://github.com/nderousseaux/resume","last_synced_at":"2025-12-30T20:02:56.441Z","repository":{"id":259764947,"uuid":"860439003","full_name":"nderousseaux/resume","owner":"nderousseaux","description":"My resume, and some tools related to it.","archived":false,"fork":false,"pushed_at":"2025-02-10T10:53:37.000Z","size":49451,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-10T11:36:48.733Z","etag":null,"topics":["express","javascript","jsonresume","personal-config","postgresql","puppeteer","vercel","web"],"latest_commit_sha":null,"homepage":"https://cv.nderousseaux.fr","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/nderousseaux.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}},"created_at":"2024-09-20T12:42:45.000Z","updated_at":"2025-02-10T10:53:40.000Z","dependencies_parsed_at":"2024-10-27T22:45:05.403Z","dependency_job_id":"b728941b-fb36-4c67-a983-7cc0e6bea0b8","html_url":"https://github.com/nderousseaux/resume","commit_stats":null,"previous_names":["nderousseaux/resume"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nderousseaux%2Fresume","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nderousseaux%2Fresume/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nderousseaux%2Fresume/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nderousseaux%2Fresume/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/nderousseaux","download_url":"https://codeload.github.com/nderousseaux/resume/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247485281,"owners_count":20946397,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["express","javascript","jsonresume","personal-config","postgresql","puppeteer","vercel","web"],"created_at":"2024-12-19T22:32:24.412Z","updated_at":"2025-12-30T20:02:56.356Z","avatar_url":"https://github.com/nderousseaux.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n\t\u003cimg src=\"https://skillicons.dev/icons?i=js,express,postgres,vercel\" height=\"30\" /\u003e\n\u003c/p\u003e\n\n\u003cp align=\"center\"\u003e\n\t\u003cimg src=\"https://cv.nderousseaux.fr/picture.jpg\" alt=\"Icon of the project\" width=\"150\" style=\"border-radius: 50%\" /\u003e\n\u003c/p\u003e\n\n# \u003cdiv align=\"center\"\u003eMy resume\u003c/div\u003e\n\u003cdiv align=\"center\"\u003e\n\t\u003csamp\u003eMy resume, and some tools related to it.\u003c/samp\u003e\n\u003c/div\u003e\n\n\u003chr\u003e\n\n## ℹ️ About\nThis is my online resume. Made with express, [json-resume](https://jsonresume.org) and [my french version of the stackoverflow theme](https://github.com/nderousseaux/jsonresume-theme-stackoverflow-french). The conversion to pdf is done with [puppeteer](https://github.com/puppeteer). The database is a postgresql database.\n\nThe deployment is done via vercel.\n\u003cp align=\"center\"\u003e\n\t\u003cimg src=\"docs/demo.gif\" alt=\"Demo of the project\" /\u003e\n\u003c/p\u003e\n\n## 📚 Features\n\n- `GET /` : Get the resume in the html format.\n- `GET /pdf` : Get the resume in the pdf format.\n- `GET /json` : Get the resume in the json format.\n\nYou can also use it for build your own resume :\n- `POST /`: Post a json resume, and get the html resume. \n- `POST /pdf`: Post a json resume, and get the pdf resume.\n\nHere some cheatsheet for the api (-L because my vercel configuration requires it) :\n```bash\n# GET /\n$ curl -L https://cv.nderousseaux.fr \u003e resume.html\n# GET /pdf\n$ curl -L https://cv.nderousseaux.fr/pdf \u003e resume.pdf\n# GET /json\n$ curl -L https://cv.nderousseaux.fr/json \u003e resume.json\n\n# POST /\n$ curl -L -X POST -H \"Content-Type: application/json\" -d @resume.json https://cv.nderousseaux.fr \u003e resume.html\n# POST /pdf\n$ curl -L -X POST -H \"Content-Type: application/json\" -d @resume.json https://cv.nderousseaux.fr/pdf \u003e resume.pdf\n```\n\nIf you want to see the schema of the json resume, you can see at the [jsonresume.org](https://jsonresume.org) project.\n\n## 🛠️ Installation, development and deployment\n\n### Installation\n```bash\n$ npm install\n$ mv .env.example .env\n```\n\nFill the `.env` file with your own values. Then, init the database with the `struct.sql` file :\n\n```bash\n$ plsql -U \u003cuser\u003e -d \u003cdatabase\u003e -f struct.sql\n```\n\nAnd finally, fill the database with your own data.\n\n\n### Development\n```bash\n$ npm run dev \n#or, with vercel\n$ vercel dev\n```\n\n### Deployment\n```bash\n$ vercel --prod\n```\n\nOr simply push to the main branch, if you have the vercel integration enabled.\n\n## 🌅 Some screenshots\n\u003cp align=\"center\"\u003e\n\t\u003cimg src=\"docs/screenshot.png\" alt=\"Screenshot of the project\" height=\"500\" /\u003e\n\u003c/p\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnderousseaux%2Fresume","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnderousseaux%2Fresume","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnderousseaux%2Fresume/lists"}