init commit

This commit is contained in:
iFlip721
2025-04-16 09:55:57 -04:00
commit a03209dc9e
935 changed files with 177492 additions and 0 deletions

59
config.ps1 Normal file
View File

@@ -0,0 +1,59 @@
$global:pptConfig = @{
#############################################
#
# Relative path access to pac-cli binary
# Modifications to relative path are considered advanced features
#
pacPath = (Join-Path -Path $PSScriptRoot -ChildPath 'bin\pac\tools\pac.exe')
#pacPath = "C:\ProgramData\.vscode\settings\User\globalStorage\microsoft-isvexptools.powerplatform-vscode\pac\tools\pac.exe"
#############################################
#
# Config variable property containing a list of all GitLab parent
# groups required for development team(s)
#
# Example Hierarchy:
# MAI (parent group)
# |
# |_ Steampunk (child group)
# | |_ CCAS (repo)
# | |_ Fraud (repo)
# | |_ GCMM (repo)
# |
# |_ development (child group)
# | |_ dcma-mai-cams (repo)
# | |_ dcma-mai-cmt (repo)
# |
# |_ common (child group)
#
# SDG (parent group)
# |
# |_ PowerApp (child group)
# | |_ BuildScripts (repo)
# | |_ OnBoardingOffboarding (repo)
# | |_ RemoteworkAgreement (repo)
# | |_ SDG-Connection-Segment (repo)
# |
# |_ Support (child group)
# |_ pac-cli (repo)
# |_ VSCode Extensions (repo)
#
gitParentGroup = @(
'PowerPlatform'
)
#############################################
#
# Config variable property containing a list of all GitLab child
# groups required for development team(s)
#
gitChildGroup = @(
'PowerShell'
'Support'
'PowerApp'
)
}