Windows Environment
Open the PowerShell as Administrator and enter the following commands.
Config PowerShell
Set unrestricted execution policy:
Set-ExecutionPolicy Unrestricted
Install Wizard
Install everything at once and run local development server:
Invoke-Expression ((New-Object System.Net.WebClient).DownloadString('https://powershell.redaxscript.com/wizard.ps1'))
Install Git
Install Git on your local environment:
Invoke-Expression ((New-Object System.Net.WebClient).DownloadString('https://powershell.redaxscript.com/git-setup.ps1'))
Config Git
Config your name and email:
git config --global user.name {Your Name}
git config --global user.email {your.name@domain.com}
Install Node
Install Node on your local environment:
Invoke-Expression ((New-Object System.Net.WebClient).DownloadString('https://powershell.redaxscript.com/node-setup.ps1'))
Install Grunt
Install Grunt on your local environment:
Invoke-Expression ((New-Object System.Net.WebClient).DownloadString('https://powershell.redaxscript.com/grunt-setup.ps1'))
Install PHP
Install PHP on your local environment:
Invoke-Expression ((New-Object System.Net.WebClient).DownloadString('https://powershell.redaxscript.com/runtime-setup.ps1'))
Invoke-Expression ((New-Object System.Net.WebClient).DownloadString('https://powershell.redaxscript.com/php-setup.ps1'))
Install Composer
Install Composer on your local environment:
Invoke-Expression ((New-Object System.Net.WebClient).DownloadString('https://powershell.redaxscript.com/composer-setup.ps1'))
Install MySQL
Install the MySQL
bundle on your local environment:
Invoke-Expression ((New-Object System.Net.WebClient).DownloadString('https://powershell.redaxscript.com/mysql-setup.ps1'))
Install PostgreSQL
Install the PostgreSQL
bundle on your local environment:
Invoke-Expression ((New-Object System.Net.WebClient).DownloadString('https://powershell.redaxscript.com/postgresql-setup.ps1'))
Install Papercut
Install Papercut on your local environment:
Invoke-Expression ((New-Object System.Net.WebClient).DownloadString('https://powershell.redaxscript.com/papercut-setup.ps1'))
Install Redaxscript
Install Redaxscript on your local environment:
Invoke-Expression ((New-Object System.Net.WebClient).DownloadString('https://powershell.redaxscript.com/redaxscript-setup.ps1'))Edit on GitHub