{"id":15422057,"url":"https://github.com/berniewhite/devopskitdsc","last_synced_at":"2025-04-19T16:08:02.595Z","repository":{"id":87929177,"uuid":"102413153","full_name":"BernieWhite/DevOpsKitDsc","owner":"BernieWhite","description":"Automation resources for working with PowerShell Desired State Configuration (DSC).","archived":false,"fork":false,"pushed_at":"2019-10-25T05:09:16.000Z","size":80,"stargazers_count":21,"open_issues_count":2,"forks_count":2,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-03-29T09:51:14.845Z","etag":null,"topics":["desired-state-configuration","devops-tools","powershell-module"],"latest_commit_sha":null,"homepage":"https://www.powershellgallery.com/packages/DevOpsKitDsc","language":"PowerShell","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/BernieWhite.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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}},"created_at":"2017-09-05T00:08:42.000Z","updated_at":"2024-11-22T19:47:23.000Z","dependencies_parsed_at":null,"dependency_job_id":"7ba2bcda-be18-4c8c-a326-de2968268037","html_url":"https://github.com/BernieWhite/DevOpsKitDsc","commit_stats":{"total_commits":9,"total_committers":2,"mean_commits":4.5,"dds":0.2222222222222222,"last_synced_commit":"3e4395577ccf331347e7cca657f9f4234ef7b7f8"},"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BernieWhite%2FDevOpsKitDsc","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BernieWhite%2FDevOpsKitDsc/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BernieWhite%2FDevOpsKitDsc/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BernieWhite%2FDevOpsKitDsc/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/BernieWhite","download_url":"https://codeload.github.com/BernieWhite/DevOpsKitDsc/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":249220841,"owners_count":21232421,"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":["desired-state-configuration","devops-tools","powershell-module"],"created_at":"2024-10-01T17:36:48.347Z","updated_at":"2025-04-16T08:33:36.666Z","avatar_url":"https://github.com/BernieWhite.png","language":"PowerShell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# DevOps Kit for Dsc\n\nThis DevOps Kit for Desired State Configuration (DOKD) aims to provide IT Pros with tools and documentation to easily adopt a DevOps model for deploying and managing Desired State Configuration (DSC).\n\nDSC already provides the tools for IT Pros to automate the configuration of Windows or Linux to stand-up a fully running workload. Application Lifecycle Management (ALM) tools such as Visual Studio Team Services (VSTS) also provide features such as requirements tracking, version control and release management.\n\n| AppVeyor (Windows)       | Codecov (Windows) |\n| ------------------       | ----------------- |\n| [![av-image][]][av-site] | [![cc-image][]][cc-site] |\n\n[av-image]: https://ci.appveyor.com/api/projects/status/29gj31o96ajd2ars\n[av-site]: https://ci.appveyor.com/project/BernieWhite/devopskitdsc\n[cc-image]: https://codecov.io/gh/BernieWhite/DevOpsKitDsc/branch/master/graph/badge.svg\n[cc-site]: https://codecov.io/gh/BernieWhite/DevOpsKitDsc\n\n## Disclaimer\n\nThis project is to be considered a **proof-of-concept** and **not a supported Microsoft product**.\n\n## Modules\n\nThe following modules are included in this repository.\n\n| Module       | Description | Latest version |\n| ------       | ----------- | -------------- |\n| DevOpsKitDsc | Automate releases of Desired State Configuration configurations | [![psg-dokdsc-version-badge][]][psg-dokdsc] [![psg-dokdsc-installs-badge][]][psg-dokdsc] |\n\n## Features\n\n- [DevOps](docs/feature-details.md#devops)\n- [Collections](docs/feature-details.md#collections)\n  - Group configuration and nodes into collections that can be built together.\n- [Build](docs/feature-details.md#build)\n  - Restore module dependencies.\n  - Build only changed nodes with incremental build.\n  - Build documentation together with DSC configurations.\n- [Node configuration data](docs/feature-details.md#node-configuration-data)\n  - Use flat configuration data structure for a single node.\n  - Use your choice of PSD1 or JSON files for storing node data.\n- [Release](docs/feature-details.md#release)\n  - Package configurations and resource modules ready for a local pull server or Azure Automation Service.\n\n## Getting started\n\n### Getting the module\n\n- Install from [PowerShell Gallery][psg-dokdsc]\n\n```powershell\n# Install the module\nInstall-Module -Name 'DevOpsKitDsc';\n```\n\n- Save for offline use from PowerShell Gallery\n\n```powershell\n# Save the DevOpsKitDsc module, in the .\\modules directory\nSave-Module -Name 'DevOpsKitDsc' -Path '.\\modules';\n```\n\n### Getting Visual Studio Code integration\n\n- Install extension (preview) from [Visual Studio Marketplace][vsm-dokd-vscode]\n\n```powershell\n# Install the extension\ncode --install-extension bewhite.dokd-vscode-preview\n```\n\n### Building a cloned git repository\n\nGet a sample configuration repository and build the configurations.\n\n```powershell\n# Use git to clone the repository\ngit clone https://github.com/BernieWhite/DevOpsKitDsc-samples.git;\n\ncd .\\DevOpsKitDsc-samples\n\n# Restore dependency modules to the workspace\nRestore-DOKDscModule;\n\n# Build all collections\nInvoke-DOKDscBuild;\n```\n\n### Detailed instructions\n\nFor detailed instructions please see getting started documentation [here][getting-started].\n\n## Commands\n\n- [Initialize-DOKDsc](/docs/commands/en-US/Initialize-DOKDsc.md)\n- [Register-DOKDscNode](/docs/commands/en-US/Register-DOKDscNode.md)\n- [Import-DOKDscNodeConfiguration](/docs/commands/en-US/Import-DOKDscNodeConfiguration.md)\n- [Invoke-DOKDscBuild](/docs/commands/en-US/Invoke-DOKDscBuild.md)\n- [New-DOKDscCollection](/docs/commands/en-US/New-DOKDscCollection.md)\n- [Publish-DOKDscCollection](/docs/commands/en-US/Public-DOKDscCollection.md)\n- [Get-DOKDscCollection](/docs/commands/en-US/Get-DOKDscCollection.md)\n- [Set-DOKDscCollectionOption](/docs/commands/en-US/Set-DOKDscCollectionOption.md)\n- [Import-DOKDscWorkspaceSetting](/docs/commands/en-US/Import-DOKDscWorkspaceSetting.md)\n- [Set-DOKDscWorkspaceOption](/docs/commands/en-US/Set-DOKDscWorkspaceOption.md)\n- [Get-DOKDscWorkspaceOption](/docs/commands/en-US/Get-DOKDscWorkspaceOption.md)\n- [Add-DOKDscModule](/docs/commands/en-US/Add-DOKDscModule.md)\n- [Get-DOKDscModule](/docs/commands/en-US/Get-DOKDscModule.md)\n- [Publish-DOKDscModule](/docs/commands/en-US/Publish-DOKDscModule.md)\n- [Restore-DOKDscModule](/docs/commands/en-US/Restore-DOKDscModule.md)\n\n## Related projects\n\n| Project name       | Description |\n| ------             | ----------- |\n| [DevOpsKitDsc-vscode](https://github.com/BernieWhite/DevOpsKitDsc-vscode) | A Visual Studio Code extension for DOKD |\n| [DevOpsKitDsc-samples](https://github.com/BernieWhite/DevOpsKitDsc-samples) | A sample DOKD repository |\n| [PSDocs](https://github.com/BernieWhite/PSDocs) | A PowerShell module to generate markdown from pipeline objects |\n\n## Maintainers\n\n- [Bernie White](https://github.com/BernieWhite)\n\n## License\n\nThis project is [licensed under the MIT License](LICENSE).\n\n[psg-dokdsc]: https://www.powershellgallery.com/packages/DevOpsKitDsc\n[psg-dokdsc-version-badge]: https://img.shields.io/powershellgallery/v/DevOpsKitDsc.svg\n[psg-dokdsc-installs-badge]: https://img.shields.io/powershellgallery/dt/DevOpsKitDsc.svg\n[vsm-dokd-vscode]: https://marketplace.visualstudio.com/items?itemName=bewhite.dokd-vscode-preview\n[getting-started]: docs/getting-started.md\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fberniewhite%2Fdevopskitdsc","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fberniewhite%2Fdevopskitdsc","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fberniewhite%2Fdevopskitdsc/lists"}