Installation

Requirements

  • Go 1.21 or later
  • Git
  • SQLite (included via CGO) or PostgreSQL

Quick Start

Clone the RapidGo framework and rename the module to your project:

git clone https://github.com/RAiWorks/RapidGo.git myproject
cd myproject

Update the Go module path:

go mod edit -module github.com/yourname/myproject

Then update all import paths in the codebase to match your new module name.

Install Dependencies

go mod tidy

Run Migrations

go run cmd/main.go migrate

Start the Server

go run cmd/main.go serve

Your application is now running at http://localhost:8080.