├── .github ├── ISSUE_TEMPLATE │ └── bug_report.md └── workflows │ └── powershell.yml ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── examples ├── Azure-LogicApp-Documentation.md ├── Notify of Canceled Meetings.md └── logic-jiraintegration-demo.json ├── images ├── examplemarkdownlogicappflowdocument.png ├── examplemarkdownpowerautomateflowdocument.png ├── folderstructure_LogicAppFlow.png ├── folderstructure_PowerAutomateFlow.png ├── logicappscript.png ├── powerautomateenvironmentid.png └── powerautomatescript.png ├── src ├── Bootstrap.ps1 ├── Helper.ps1 ├── LogicApp.Doc.ps1 ├── New-LogicAppDoc.ps1 ├── New-PowerAutomateDoc.ps1 └── PowerAutomate.Doc.ps1 └── tests ├── Test-LogicAppDoc.ps1 ├── Test-PowerAutomateDoc.ps1 └── Test-PowerAutomateDocLocal.ps1 /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanstranger/logicappdocs/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/workflows/powershell.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanstranger/logicappdocs/HEAD/.github/workflows/powershell.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode/settings.json 2 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanstranger/logicappdocs/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanstranger/logicappdocs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanstranger/logicappdocs/HEAD/README.md -------------------------------------------------------------------------------- /examples/Azure-LogicApp-Documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanstranger/logicappdocs/HEAD/examples/Azure-LogicApp-Documentation.md -------------------------------------------------------------------------------- /examples/Notify of Canceled Meetings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanstranger/logicappdocs/HEAD/examples/Notify of Canceled Meetings.md -------------------------------------------------------------------------------- /examples/logic-jiraintegration-demo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanstranger/logicappdocs/HEAD/examples/logic-jiraintegration-demo.json -------------------------------------------------------------------------------- /images/examplemarkdownlogicappflowdocument.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanstranger/logicappdocs/HEAD/images/examplemarkdownlogicappflowdocument.png -------------------------------------------------------------------------------- /images/examplemarkdownpowerautomateflowdocument.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanstranger/logicappdocs/HEAD/images/examplemarkdownpowerautomateflowdocument.png -------------------------------------------------------------------------------- /images/folderstructure_LogicAppFlow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanstranger/logicappdocs/HEAD/images/folderstructure_LogicAppFlow.png -------------------------------------------------------------------------------- /images/folderstructure_PowerAutomateFlow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanstranger/logicappdocs/HEAD/images/folderstructure_PowerAutomateFlow.png -------------------------------------------------------------------------------- /images/logicappscript.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanstranger/logicappdocs/HEAD/images/logicappscript.png -------------------------------------------------------------------------------- /images/powerautomateenvironmentid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanstranger/logicappdocs/HEAD/images/powerautomateenvironmentid.png -------------------------------------------------------------------------------- /images/powerautomatescript.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanstranger/logicappdocs/HEAD/images/powerautomatescript.png -------------------------------------------------------------------------------- /src/Bootstrap.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanstranger/logicappdocs/HEAD/src/Bootstrap.ps1 -------------------------------------------------------------------------------- /src/Helper.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanstranger/logicappdocs/HEAD/src/Helper.ps1 -------------------------------------------------------------------------------- /src/LogicApp.Doc.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanstranger/logicappdocs/HEAD/src/LogicApp.Doc.ps1 -------------------------------------------------------------------------------- /src/New-LogicAppDoc.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanstranger/logicappdocs/HEAD/src/New-LogicAppDoc.ps1 -------------------------------------------------------------------------------- /src/New-PowerAutomateDoc.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanstranger/logicappdocs/HEAD/src/New-PowerAutomateDoc.ps1 -------------------------------------------------------------------------------- /src/PowerAutomate.Doc.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanstranger/logicappdocs/HEAD/src/PowerAutomate.Doc.ps1 -------------------------------------------------------------------------------- /tests/Test-LogicAppDoc.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanstranger/logicappdocs/HEAD/tests/Test-LogicAppDoc.ps1 -------------------------------------------------------------------------------- /tests/Test-PowerAutomateDoc.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanstranger/logicappdocs/HEAD/tests/Test-PowerAutomateDoc.ps1 -------------------------------------------------------------------------------- /tests/Test-PowerAutomateDocLocal.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanstranger/logicappdocs/HEAD/tests/Test-PowerAutomateDocLocal.ps1 --------------------------------------------------------------------------------