{"id":39864778,"url":"https://github.com/shaiq-dev/resume","last_synced_at":"2026-01-18T14:06:02.301Z","repository":{"id":104491331,"uuid":"458189179","full_name":"shaiq-dev/resume","owner":"shaiq-dev","description":"Live resume  using Latex, GitHub Actions and Cloudflare Workers, R2.","archived":false,"fork":false,"pushed_at":"2025-09-18T20:08:16.000Z","size":102,"stargazers_count":22,"open_issues_count":0,"forks_count":6,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-09-18T21:14:45.845Z","etag":null,"topics":["actions","aws","cloudflare","cloudflare-workers","cv","devops","latex","latex-resume","latex-resume-template","latex-template","resume","resume-devops","resume-template","tex","wrangler"],"latest_commit_sha":null,"homepage":"https://resume.shaiq.dev","language":"TeX","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/shaiq-dev.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2022-02-11T13:03:18.000Z","updated_at":"2025-09-18T20:08:17.000Z","dependencies_parsed_at":null,"dependency_job_id":"5ba62725-5511-4b73-97cf-a57cbe47d820","html_url":"https://github.com/shaiq-dev/resume","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/shaiq-dev/resume","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shaiq-dev%2Fresume","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shaiq-dev%2Fresume/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shaiq-dev%2Fresume/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shaiq-dev%2Fresume/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/shaiq-dev","download_url":"https://codeload.github.com/shaiq-dev/resume/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shaiq-dev%2Fresume/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28537492,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-18T13:04:05.990Z","status":"ssl_error","status_checked_at":"2026-01-18T13:01:44.092Z","response_time":98,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["actions","aws","cloudflare","cloudflare-workers","cv","devops","latex","latex-resume","latex-resume-template","latex-template","resume","resume-devops","resume-template","tex","wrangler"],"created_at":"2026-01-18T14:06:02.208Z","updated_at":"2026-01-18T14:06:02.286Z","avatar_url":"https://github.com/shaiq-dev.png","language":"TeX","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Resume\n\nAutomatically build and publish your LaTeX resume to a custom subdomain, while archiving previous versions in [Cloudflare R2](https://www.cloudflare.com/en-in/developer-platform/products/r2/).\n\n\n## Quick Start\n\n### 1. Fork and Clone\n```bash\ngit clone https://github.com/\u003cyour-username\u003e/resume.git\ncd resume\n```\n\nEdit the LaTeX template in the `src` directory, or replace it with your own. If your LaTeX file uses additional packages, make sure to add them to the `Dockerfile`.\n\n### 2. Setup Cloudflare\n```bash\n# Install Wrangler CLI and login to cloudflare\nnpm install -g wrangler\n\nwrangler login\n\n# Create R2 bucket\nwrangler r2 bucket create \u003cyour-resume-storage\u003e\n```\n\nUpdate your custom subdomain in `wrangler.toml`. The domain must already be added to your Cloudflare account. See Cloudflare [documentation](https://developers.cloudflare.com/fundamentals/manage-domains/add-site/) for instructions on adding domains.\n\n### 3. Configure GitHub Actions\nGitHub Actions requires the following secrets to deploy the Cloudflare Worker and upload your resume to R2:\n\n```bash\n# Required by Wrangler as documented here:\n# https://github.com/cloudflare/wrangler-action?tab=readme-ov-file#i-just-started-using-workerswrangler-and-i-dont-know-what-this-is\n# https://developers.cloudflare.com/fundamentals/account/find-account-and-zone-ids/\nCLOUDFLARE_ACCOUNT_ID=\n\n# Token with permissions to deploy Worker scripts.\n# Permissions required:\n#   Account-level:\n#     - Workers Builds Configuration:Edit\n#     - Workers Scripts:Edit\n#     - Account Settings:Read\n#   Domain-level:\n#     - Workers Routes:Edit\n#     - DNS:Edit\nCLOUDFLARE_API_TOKEN=\n\n# R2 implements the S3 API, compatible with AWS SDK.\n# https://developers.cloudflare.com/r2/api/tokens/\nCLOUDFLARE_R2_ACCESS_KEY_ID=\nCLOUDFLARE_R2_SECRET_ACCESS_KEY=\nCLOUDFLARE_R2_ENDPOINT=\n```\n\n\u003cbr /\u003e\n\n## Local Build \nYou can build the resume locally using Docker without installing LaTeX or TeX Live on your machine.\n\n```bash\n./build.sh\n```\n\n\u003cbr /\u003e\n\n## License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fshaiq-dev%2Fresume","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fshaiq-dev%2Fresume","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fshaiq-dev%2Fresume/lists"}