Initial Release: OpenQode Public Alpha v1.3

This commit is contained in:
Gemini AI
2025-12-14 00:40:14 +04:00
Unverified
commit 8e8d80c110
119 changed files with 31174 additions and 0 deletions

38
Install.ps1 Normal file
View File

@@ -0,0 +1,38 @@
Write-Host "OpenQode Auto-Installer" -ForegroundColor Cyan
Write-Host "-----------------------" -ForegroundColor Cyan
# Check for Git
if (!(Get-Command git -ErrorAction SilentlyContinue)) {
Write-Host "Error: Git is not installed." -ForegroundColor Red
Write-Host "Please install Git: https://git-scm.com/download/win"
exit
}
# Check for Node
if (!(Get-Command node -ErrorAction SilentlyContinue)) {
Write-Host "Error: Node.js is not installed." -ForegroundColor Red
Write-Host "Please install Node.js: https://nodejs.org/"
exit
}
$repoUrl = "https://github.com/roman-ryzenadvanced/OpenQode-Public-Alpha.git"
$targetDir = "OpenQode"
if (Test-Path $targetDir) {
Write-Host "Directory '$targetDir' already exists. Entering directory..." -ForegroundColor Yellow
} else {
Write-Host "Cloning repository..." -ForegroundColor Yellow
git clone $repoUrl $targetDir
}
Set-Location $targetDir
if (!(Test-Path "node_modules")) {
Write-Host "Installing dependencies..." -ForegroundColor Yellow
npm install
} else {
Write-Host "Dependencies already installed." -ForegroundColor Green
}
Write-Host "Installation complete! Launching..." -ForegroundColor Green
.\OpenQode.bat