0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2025-12-28 20:03:02 +00:00
Files
homebrewery/install/windows/install-pt2.ps1
2023-01-23 21:00:00 +13:00

25 lines
467 B
PowerShell

Write-Host Part Two Install
Write-Host ================
Write-Host Create Homebrewery directory
mkdir C:\Hombrewery
cd C:\Hombrewery
Write-Host Download Homebrewery project files
git clone https://github.com/naturalcrit/homebrewery.git
Write-Host Install Homebrewery files
cd homebrewery
npm install
npm audit fix
Write-Host Set install type to 'local'
[System.Environment]::SetEnvironmentVariable('NODE_ENV', 'local')
Write-Host Start Homebrewery
npm start