To install LzAws PowerShell Module: Navigate to C:\Users\username\Source\Repos
and run git clone https://github.com/LazyMagicOrg/LzAws.git LzAws
to clone the LzAws PowerShell module.
The LzAws PowerShell Module is a collection of PowerShell functions and cmdlets that automate AWS deployment tasks for LazyMagic projects. It provides simplified commands for managing AWS resources, deployments, and configurations specific to LazyMagic-generated applications.
Navigate to or create the standard Visual Studio source directory structure:
cd C:\Users\yourusername
mkdir Source\Repos -ErrorAction SilentlyContinue
cd Source\Repos
Note: If you installed Visual Studio IDE, this folder structure may already exist.
Clone the LzAws PowerShell module from the LazyMagicOrg GitHub repository:
git clone https://github.com/LazyMagicOrg/LzAws.git LzAws
Navigate to the cloned directory and verify the module files:
cd LzAws
dir
You should see PowerShell module files (.psm1, .psd1) and documentation.
To use the LzAws module in your PowerShell sessions:
Import-Module .\LzAws.psd1
To verify the LzAws module is properly installed:
cd C:\Users\yourusername\Source\Repos\LzAws
Import-Module .\LzAws.psd1
Get-Command -Module LzAws
git pull
in the LzAws directory to get updatesAfter successfully installing the LzAws PowerShell Module, proceed to install the LazyMagic Visual Studio IDE Extension in the final step of the LazyMagic setup process.