Skip to content

Goca v1.13.6

Latest
Compare
Choose a tag to compare
@github-actions github-actions released this 12 Oct 22:23
· 10 commits to master since this release

🎉 Goca v1.13.6

Go Clean Architecture Code Generator

🚀 Quick Installation

Using Go install:

go install github.com/sazardev/[email protected]

Download Binary:

Windows (64-bit):

  • Download goca-windows-amd64.exe
  • Rename to goca.exe and add to your PATH

Linux (64-bit):

wget https://github.com/sazardev/goca/releases/download/v1.13.6/goca-linux-amd64
chmod +x goca-linux-amd64
sudo mv goca-linux-amd64 /usr/local/bin/goca

macOS:

# Intel Macs
wget https://github.com/sazardev/goca/releases/download/v1.13.6/goca-darwin-amd64
chmod +x goca-darwin-amd64
sudo mv goca-darwin-amd64 /usr/local/bin/goca

# Apple Silicon Macs
wget https://github.com/sazardev/goca/releases/download/v1.13.6/goca-darwin-arm64
chmod +x goca-darwin-arm64
sudo mv goca-darwin-arm64 /usr/local/bin/goca

🛠️ Quick Start

# Initialize a new project
goca init myproject --module github.com/user/myproject

# Generate a complete feature
goca feature User --fields "name:string,email:string,age:int"

# Check version
goca version

📋 What's Included

  • ✅ Project initialization with Clean Architecture
  • ✅ Entity, UseCase, Repository, Handler generation
  • ✅ Multi-protocol support (HTTP, gRPC, CLI, Worker, SOAP)
  • ✅ Multi-database support (PostgreSQL, MySQL, MongoDB)
  • ✅ Complete feature generation
  • ✅ Dependency injection setup

🔗 Links

Verify your download:
Check the checksums.txt file to verify the integrity of your download.