{"id":15716694,"url":"https://github.com/cloudymax/cloudydevdotnet","last_synced_at":"2026-02-26T00:36:22.549Z","repository":{"id":45646599,"uuid":"431472652","full_name":"cloudymax/CloudyDevDotNet","owner":"cloudymax","description":"My personal webpage ","archived":false,"fork":false,"pushed_at":"2025-03-31T20:15:30.000Z","size":12096,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-01-14T14:42:38.044Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://www.cloudydev.net/","language":null,"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/cloudymax.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,"zenodo":null}},"created_at":"2021-11-24T12:19:24.000Z","updated_at":"2025-03-31T20:15:33.000Z","dependencies_parsed_at":"2025-05-05T06:31:03.401Z","dependency_job_id":null,"html_url":"https://github.com/cloudymax/CloudyDevDotNet","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/cloudymax/CloudyDevDotNet","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudymax%2FCloudyDevDotNet","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudymax%2FCloudyDevDotNet/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudymax%2FCloudyDevDotNet/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudymax%2FCloudyDevDotNet/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cloudymax","download_url":"https://codeload.github.com/cloudymax/CloudyDevDotNet/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudymax%2FCloudyDevDotNet/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29845614,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-25T22:37:40.667Z","status":"ssl_error","status_checked_at":"2026-02-25T22:37:25.960Z","response_time":61,"last_error":"SSL_read: 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":[],"created_at":"2024-10-03T21:46:33.130Z","updated_at":"2026-02-26T00:36:22.534Z","avatar_url":"https://github.com/cloudymax.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# Static website hosting for ~$0.05 /month\n\nHow I host my personal site in an Azure Storage Blob. \n\n## 1. Install the Azure CLI\n\n```zsh\ncurl -sL https://aka.ms/InstallAzureCLIDeb | sudo bash\n```\n\n## 2. Log In\n\n```zsh\naz login\n```\n\n## 3. List Subscriptions\n\n```zsh\n❯ az account list -o table                     \nName           CloudName    SubscriptionId                            State    IsDefault\n-------------  -----------  ------------------------------------      -------  -----------\ncloudydev.net  AzureCloud   d520e0d1-8ce2-4bf3-bb06-443ee372cfec      Enabled  True\n    ```\n```\n\n## 4. Export variables and keep things DRY\n    \n```bash\nexport KIND=\"StorageV2\"\nexport LOCATION=\"westeurope\"\nexport SUBSCRIPTION=\"cloudydev.net\"\nexport RG_NAME=\"cloudydev-docs\"\nexport STORAGE_NAME=\"cloudydevdata\"\nexport STORAGE_SKU=\"Standard_RAGRS\"\nexport ERROR_DOC=\"index.html\"\nexport INDEX_DOC=\"index.html\"\nexport SITE_ROOT_FOLDER=\"site\"\n```\n\n## 5. Set subscription\n\n```zsh\naz account set --subscription=\"${SUBSCRIPTION}\"\n```\n\n## 6. Create a resource group\n\n```zsh\naz group create \\\n  -l=\"${LOCATION}\" \\\n  -n=\"${RG_NAME}\"\n```\n\n## 7. Create storage account\n\n- [Reference](https://docs.microsoft.com/en-us/rest/api/storagerp/srp_sku_types)\n\n```zsh\n  az storage account create \\\n    --name=\"${STORAGE_NAME}\" \\\n    --resource-group=\"${RG_NAME}\" \\\n    --location=\"${LOCATION}\" \\\n    --sku=\"${STORAGE_SKU}\" \\\n    --kind=\"${KIND}\"\n```\n\n## 8. Enable static website hosting\n \n```zsh\n  az storage blob service-properties update \\\n    --account-name=\"${STORAGE_NAME}\" \\\n    --static-website \\\n    --404-document=\"${ERROR_DOC}\" \\\n    --index-document=\"${INDEX_DOC}\" \\\n    --auth-mode login\n```\n\n## 9. Upload Files\n    \n```zsh\n az storage blob upload-batch \\\n     -s \"${SITE_ROOT_FOLDER}\" \\\n     -d '$web' \\\n     --account-name=\"${STORAGE_NAME}\"\n```\n\n## 10. Get the URL\n\n```zsh\naz storage account show \\\n  -n \"${STORAGE_NAME}\" \\\n  -g \"${RG_NAME}\" \\\n  --query \"primaryEndpoints.web\" \\\n  --output tsv\n# https://cloudydevdata.z6.web.core.windows.net/  \n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcloudymax%2Fcloudydevdotnet","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcloudymax%2Fcloudydevdotnet","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcloudymax%2Fcloudydevdotnet/lists"}