Skip to content

Commit afa3408

Browse files
docs: migrate documentation site
Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com>
1 parent bf67cd9 commit afa3408

64 files changed

Lines changed: 2098 additions & 2 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ Documentation site generation is powered by Zensical. Repositories define site c
66

77
## Documentation
88

9-
The full documentation lives on the MSX / Docs site:
9+
The full documentation is published at:
1010

11-
📖 **[Process-PSModule documentation](https://msxorg.github.io/docs/Frameworks/Process-PSModule/)**
11+
📖 **[Process-PSModule documentation](https://psmodule.io/docs/)**
1212

1313
It covers getting started, the pipeline stages, usage, configuration, repository structure, and the principles behind the framework.

docs/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/site/

docs/content/Dictionary/api.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
---
2+
title: 'Application Programming Interface'
3+
abbreviations:
4+
- 'API'
5+
---
6+
7+
# Application Programming Interface
8+
9+
Application Programming Interface (API) - A set of protocols, routines, and tools for building software applications. APIs specify how software components should interact and are used when programming graphical user interface (GUI) components.
10+
11+
**Example**: The [GitHub](github.md) API allows developers to interact with GitHub repositories, issues, and pull requests programmatically.
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
title: 'Azure DevOps'
3+
abbreviations: []
4+
---
5+
6+
# Azure DevOps
7+
8+
A set of development tools and services from Microsoft for software development teams, including version control, build automation, and project management.
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
title: 'Azure Functions'
3+
abbreviations: []
4+
---
5+
6+
# Azure Functions
7+
8+
A serverless compute service that lets you run event-triggered code without having to explicitly provision or manage infrastructure.

docs/content/Dictionary/azure.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
title: 'Azure'
3+
abbreviations: []
4+
---
5+
6+
# Azure
7+
8+
Microsoft's cloud computing platform that provides a wide range of cloud services, including compute, analytics, storage, and networking.
9+
10+
**Related**: [Azure Functions](azure-functions.md), [Azure DevOps](azure-devops.md)

docs/content/Dictionary/branch.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
title: 'Branch'
3+
abbreviations: []
4+
---
5+
6+
# Branch
7+
8+
In version control systems like [Git](git.md), a branch is a parallel version of a [repository](repository.md) that diverges from the main working project.
9+
10+
**Example**: Feature branches are used to develop new features in isolation before merging back to the main branch.
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
title: 'Build Pipeline'
3+
abbreviations: []
4+
---
5+
6+
# Build Pipeline
7+
8+
An automated process that compiles, tests, and packages source code into deployable artifacts.

docs/content/Dictionary/ci-cd.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
---
2+
title: 'Continuous Integration and Continuous Deployment'
3+
abbreviations:
4+
- 'CI/CD'
5+
- 'CI'
6+
- 'CD'
7+
---
8+
9+
# Continuous Integration and Continuous Deployment
10+
11+
Continuous Integration/Continuous Deployment (CI/CD) - A software development practice where developers regularly merge their code changes into a central repository, after which automated builds and tests are run.

docs/content/Dictionary/cmdlet.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
title: 'Cmdlet'
3+
abbreviations: []
4+
---
5+
6+
# Cmdlet
7+
8+
A lightweight [PowerShell](powershell.md) command that follows the verb-noun naming convention and is designed to perform a specific function.
9+
10+
**Example**: `Get-Process`, `Set-Location`, `New-Item`

0 commit comments

Comments
 (0)