cli/docs/framework/installation.md
Snider a57fb4273d docs: restructure for VitePress with flat layout and examples
- Remove mkdocs files (requirements.txt, CNAME)
- Add CLI documentation: build.md, release.md, php.md, run.md
- Add configuration.md with full reference
- Add examples/ directory with sample configurations:
  - go-cli-release.yaml
  - wails-desktop-release.yaml
  - php-laravel-release.yaml
  - linuxkit-server.yml
  - linuxkit-docker-format.yml
  - full-release.yaml
  - minimal-release.yaml
  - official-repos.yaml
- Flatten existing framework docs into framework/
- Update index.md as CLI entry point

Ready for VitePress integration with core-php/docs.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-29 00:38:49 +00:00

966 B

Installation

Prerequisites

Go 1.22+

# macOS
brew install go

# Linux
sudo apt install golang-go

# Windows - download from https://go.dev/dl/

Wails v3

go install github.com/wailsapp/wails/v3/cmd/wails3@latest

Task (Build Automation)

# macOS
brew install go-task

# Linux
sh -c "$(curl --location https://taskfile.dev/install.sh)" -- -d

# Windows
choco install go-task

Install Core

go get github.com/Snider/Core@latest

Verify Installation

# Check Go
go version

# Check Wails
wails3 version

# Check Task
task --version

IDE Setup

VS Code

Install the Go extension and configure:

{
  "go.useLanguageServer": true,
  "gopls": {
    "ui.semanticTokens": true
  }
}

GoLand / IntelliJ

Go support is built-in. Enable the Wails plugin for additional features.

Next Steps

Continue to Quick Start to create your first application.