{"id":15409155,"url":"https://github.com/devlead/blobify","last_synced_at":"2025-10-11T12:18:40.035Z","repository":{"id":241743409,"uuid":"807315857","full_name":"devlead/Blobify","owner":"devlead","description":".NET Tool that archives local files to Azure Blob Storage","archived":false,"fork":false,"pushed_at":"2024-09-25T14:01:38.000Z","size":55,"stargazers_count":15,"open_issues_count":0,"forks_count":4,"subscribers_count":1,"default_branch":"develop","last_synced_at":"2024-11-01T13:34:43.312Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"C#","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/devlead.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","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},"funding":{"github":"devlead"}},"created_at":"2024-05-28T21:41:11.000Z","updated_at":"2024-10-13T03:39:28.000Z","dependencies_parsed_at":"2024-05-29T23:29:18.989Z","dependency_job_id":"b7b95041-1645-4f63-b92f-8e1dc01994e9","html_url":"https://github.com/devlead/Blobify","commit_stats":{"total_commits":30,"total_committers":3,"mean_commits":10.0,"dds":0.4,"last_synced_commit":"c450d40500f164df705f198973f36b60f3e7d827"},"previous_names":["devlead/blobify"],"tags_count":8,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devlead%2FBlobify","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devlead%2FBlobify/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devlead%2FBlobify/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devlead%2FBlobify/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/devlead","download_url":"https://codeload.github.com/devlead/Blobify/tar.gz/refs/heads/develop","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":223696445,"owners_count":17187628,"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":[],"created_at":"2024-10-01T16:37:49.541Z","updated_at":"2025-10-11T12:18:34.992Z","avatar_url":"https://github.com/devlead.png","language":"C#","readme":"# Blobify\n\nBlobify is a .NET Global tool that archives (moves) files from a local folder to Azure Blob Storage container.\n\n## Obtain\n\n```bash\ndotnet tool install -g Blobify\n```\n\n## Usage\n\n    blobify archive \u003cinputpath\u003e \u003cazureStorageAccount\u003e \u003cazureStorageAccountContainer\u003e [OPTIONS]\n\n### Example\n\n    blobify archive inputpath storageaccountname storagecontainer\n\n### Arguments\n\n    \u003cinputpath\u003e                       Input path\n    \u003cazureStorageAccount\u003e             Azure Storage Account Name\n    \u003cazureStorageAccountContainer\u003e    Azure Storage Account Container Name\n\n### Options\n    -h, --help               Prints help information\n        --azure-tenant-id    Azure Tentant ID to sign into\n        --file-pattern       Local file pattern to match\n\n\n## Authentication\n\nBy default it'll try authenticate using the [DefaultAzureCredential](https://learn.microsoft.com/en-us/dotnet/api/azure.identity.defaultazurecredential?view=azure-dotnet) which tries to authorize in the following order based on your environment.\n\n1. [EnvironmentCredential](https://learn.microsoft.com/en-us/dotnet/api/azure.identity.environmentcredential?view=azure-dotnet)\n1. [WorkloadIdentityCredential](https://learn.microsoft.com/en-us/dotnet/api/azure.identity.workloadidentitycredential?view=azure-dotnet)\n1. [ManagedIdentityCredential](https://learn.microsoft.com/en-us/dotnet/api/azure.identity.managedidentitycredential?view=azure-dotnet)\n1. [SharedTokenCacheCredential](https://learn.microsoft.com/en-us/dotnet/api/azure.identity.sharedtokencachecredential?view=azure-dotnet)\n1. [VisualStudioCredential](https://learn.microsoft.com/en-us/dotnet/api/azure.identity.visualstudiocredential?view=azure-dotnet)\n1. [VisualStudioCodeCredential](https://learn.microsoft.com/en-us/dotnet/api/azure.identity.visualstudiocodecredential?view=azure-dotnet)\n1. [AzureCliCredential](https://learn.microsoft.com/en-us/dotnet/api/azure.identity.azureclicredential?view=azure-dotnet)\n1. [AzurePowerShellCredential](https://learn.microsoft.com/en-us/dotnet/api/azure.identity.azurepowershellcredential?view=azure-dotnet)\n1. [AzureDeveloperCliCredential](https://learn.microsoft.com/en-us/dotnet/api/azure.identity.azuredeveloperclicredential?view=azure-dotnet)\n1. [InteractiveBrowserCredential](https://learn.microsoft.com/en-us/dotnet/api/azure.identity.interactivebrowsercredential?view=azure-dotnet)\n\n### Using EnvironmentCredential\n\n1. Set the environment variable `AZURE_TENANT_ID` to the tenant ID (found in the `App Registration` overview for your app).\n1. Set the environment variable `AZURE_CLIENT_ID` to the client ID (found in the `App Registration` overview for your app).\n1. Set the environment variable `AZURE_CLIENT_SECRET` to the secret noted earlier.\n1. Set the environment variable `AZURE_AUTHORITY_HOST` to `https://login.microsoftonline.com/`.\n\n## Tool flow\n\n```mermaid\nflowchart TD\n    ls[List files in source path]\n    exists[Verifies if blob file already exists]\n    upload[Upload file]\n    verify[Verifies MD5 hash]\n    delete[Delete file]\n    skip[Skip file]\n    ls --\u003e exists\n    exists --Found--\u003e verify\n    exists --Not Found--\u003e upload\n    upload --\u003e verify\n    verify --Matches--\u003e delete\n    verify --Not Matches--\u003e skip\n```","funding_links":["https://github.com/sponsors/devlead"],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevlead%2Fblobify","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdevlead%2Fblobify","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevlead%2Fblobify/lists"}