This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from python:alpine | |
| env PYTHONUNBUFFERED=1 | |
| run pip install --no-cache-dir feedparser requests | |
| copy rpilocator-discord.py . | |
| cmd ["python", "/rpilocator-discord.py"] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ####################### | |
| ## GitHub Configuration | |
| ####################### | |
| $githubUser = 'tigattack' | |
| $githubSecret = '' | |
| $gistID = 'e02e7039a07404f9df48e28a4558467c' | |
| $githubURI = "https://api.github.com/user" | |
| $githubGistURI = "https://api.github.com/gists" | |
| ############## |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| If (Get-Module -ListAvailable -Name 'SharePointPnPPowerShellOnline') { | |
| Import-Module SharePointPnPPowerShellOnline | |
| } | |
| Else { | |
| $PnPPInstallStatus = 'False' | |
| } | |
| Function Get-PnPFolderContents { | |
| param ( | |
| $Credential = (Get-Credential), |
NewerOlder