{"id":19886077,"url":"https://github.com/rishabkumar7/azure-cloud-resume","last_synced_at":"2025-05-02T16:31:50.782Z","repository":{"id":58563480,"uuid":"354430042","full_name":"rishabkumar7/azure-cloud-resume","owner":"rishabkumar7","description":"Azure Cloud Resume Challenge","archived":false,"fork":false,"pushed_at":"2021-05-19T18:42:50.000Z","size":976,"stargazers_count":8,"open_issues_count":0,"forks_count":5,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-04-07T03:34:44.742Z","etag":null,"topics":["azure","azure-functions","cosmosdb"],"latest_commit_sha":null,"homepage":"https://resume.rishab.cloud","language":"HTML","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/rishabkumar7.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}},"created_at":"2021-04-04T01:22:40.000Z","updated_at":"2024-04-16T05:00:52.000Z","dependencies_parsed_at":"2022-09-18T03:31:29.207Z","dependency_job_id":null,"html_url":"https://github.com/rishabkumar7/azure-cloud-resume","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rishabkumar7%2Fazure-cloud-resume","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rishabkumar7%2Fazure-cloud-resume/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rishabkumar7%2Fazure-cloud-resume/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rishabkumar7%2Fazure-cloud-resume/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rishabkumar7","download_url":"https://codeload.github.com/rishabkumar7/azure-cloud-resume/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":252071867,"owners_count":21690103,"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":["azure","azure-functions","cosmosdb"],"created_at":"2024-11-12T17:36:13.971Z","updated_at":"2025-05-02T16:31:49.359Z","avatar_url":"https://github.com/rishabkumar7.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# azure-cloud-resume\n![Website](https://img.shields.io/website?down_color=red\u0026down_message=down\u0026up_color=green\u0026up_message=up\u0026url=https%3A%2F%2Fresume.rishab.cloud) [![Hits](https://hits.seeyoufarm.com/api/count/incr/badge.svg?url=https%3A%2F%2Fgithub.com%2Frishabkumar7%2Fazure-cloud-resume\u0026count_bg=%2379C83D\u0026title_bg=%23555555\u0026icon=\u0026icon_color=%23E7E7E7\u0026title=hits\u0026edge_flat=false)](https://hits.seeyoufarm.com)\n\nHello! :wave:\n\nThis is my resume hosted in Azure. This is part of the [A Cloud Guru Challenge](https://acloudguru.com/blog/engineering/cloudguruchallenge-your-resume-in-azure).\n\n:star:[My Resume](https://resume.rishab.cloud/):star:\n[Blog Post]()\n\n## Introduction\n\nChallenges:\n\n- [x] Create a GitHub repo.\n- [x] Use HTML and CSS to build the website and store the code in the repo.\n- [x] Add a visitor count to the website.\n- [x] Deploy the website to Azure Blob Storage.\n- [x] Enable HTTPS and custom domain support.\n- [x] Set up GitHub Actions.\n- [x] Write a blog post.\n\n## My Progress\n\nI had already kind of did the AWS challenge which ACloud Guru posted in 2020 (I kind of did it back in 2019), the [Cloud Resume Challenge](https://cloudresumechallenge.dev/). Back then, I was just starting to learn AWS, and I wanted to have a project to show my cloud skills, as I was learning all these new services.\nIt's fun to do it in Azure 😄\n\n### Storage Account\n\n- Tutorial: [Host a static website on Blob Storage](https://docs.microsoft.com/en-us/azure/storage/blobs/storage-blob-static-website-host)\n\n### Enable HTTPS and custom domain\n\n- Quickstart: [Create an Azure CDN profile and endpoint](https://docs.microsoft.com/en-us/azure/cdn/cdn-create-new-endpoint)\n- Tutorial: [Map a custom domain with HTTPS enabled](https://docs.microsoft.com/en-us/azure/storage/blobs/storage-custom-domain-name?tabs=azure-portal#map-a-custom-domain-with-https-enabled)\n\n### Set up GitHub Action\n\n- Tutorial: [Use GitHub Actions to deploy your static website to Azure storage](https://docs.microsoft.com/en-us/azure/storage/blobs/storage-blobs-static-site-github-actions)\n- This workflow is compromised of 4 tasks:\n  - [Checkout](https://github.com/actions/checkout): this will checkout our code, so the workflow can access it.\n  - [Azure Login](https://github.com/marketplace/actions/azure-login): this will perform a login to Azure, so we can run commands. This is the `az login` command.\n  - [Azure CLI](https://github.com/marketplace/actions/azure-cli-action): this allows us to automate our workflow by executing Azure CLI commands. We'll use this task twice; first to upload our content to the blob storage and after that to purge the CDN endpoint.\n- I encountered an issue with the **Purge CDN endpoint** task.\n- This is the command to run to purge the CDN endpoint: \n`az cdn endpoint purge --content-paths  \"/*\" --profile-name \"CDN_PROFILE_NAME\" --name \"CDN_ENDPOINT\" --resource-group \"RESOURCE_GROUP\"`\n- The `--profile name` argument is the actual name of the CDN profile resource.\n- The `--name` argument is the name of the endpoint, as it appears in the hostname *mywebsite.azureedge.net*.\n- When you add an endpoint to your CDN profile, a new resource is created with a long name. This is not the name we should use for our command.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frishabkumar7%2Fazure-cloud-resume","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frishabkumar7%2Fazure-cloud-resume","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frishabkumar7%2Fazure-cloud-resume/lists"}