Skip to content

Instantly share code, notes, and snippets.

@timmo001
Created December 18, 2023 15:47
Show Gist options
  • Save timmo001/b3defc122ad95c632ad8670d5a8ccb15 to your computer and use it in GitHub Desktop.
Save timmo001/b3defc122ad95c632ad8670d5a8ccb15 to your computer and use it in GitHub Desktop.
Clone System Bridge - Windows
Write-Host "Make sure you have winget, GitHub CLI, Git and Python 3.12 installed before running this script!"
Read-Host -Prompt "Press Enter to continue"
Write-Output "Upgrading GitHub CLI..."
winget upgrade GitHub.CLI
Write-Output "Upgrading Git..."
winget upgrade Git.Git
Write-Output "Upgrading Python 3.12..."
winget upgrade Python.Python.3.12
Write-Output "Clone repositories..."
gh repo clone timmo001/system-bridge package
gh repo clone timmo001/system-bridge-backend backend
gh repo clone timmo001/system-bridge-cli cli
gh repo clone timmo001/system-bridge-connector connector
gh repo clone timmo001/system-bridge-frontend frontend
gh repo clone timmo001/system-bridge-gui gui
gh repo clone timmo001/system-bridge-shared shared
gh repo clone timmo001/system-bridge-models models
gh repo clone timmo001/system-bridge-windows-sensors windows-sensors
Write-Output "Clone complete!"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment