Andurel - Rails-like Web Framework for Go

Andurel is a comprehensive web development framework for Go that prioritizes development speed. Inspired by Ruby on Rails, it uses just enough conventions to let you build full-stack web applications incredibly fast.
Join the discord here
Why Andurel?
Development speed is everything. Andurel eliminates boilerplate and lets you focus on building features:
- Instant Scaffolding - Generate complete CRUD resources with one command
- Live Reload - Hot reloading for Go, templates, and CSS with
andurel run
- Type Safety Everywhere - SQLC for SQL, Templ for HTML, Go for logic
- Batteries Included - Echo, Datastar, background jobs, sessions, CSRF protection, telemetry, email support, authentication, optional extensions (workflows, docker, aws-ses)
- Just enough Convention - Convention over configuration is great to a certain point. Andurel provides just enough sensible defaults that just work and get out of your way.
- PostgreSQL-Backed - Built on PostgreSQL with River job queues, pgx driver, and UUID support
The core philosophy around resource generation in andurel, is that it should be a one-time operation that creates everything you need for a fully functional CRUD interface. After that, you can modify and extend the generated code as needed but it's yours to manage going forward.
Core Technologies
- Echo - High-performance HTTP framework
- SQLC - Type-safe SQL code generation
- Templ - Type-safe HTML templates
- Datastar - Hypermedia-driven frontend interactivity
- River - PostgreSQL-backed background jobs and workflows
- OpenTelemetry - Built-in observability
- PostgreSQL - Powerful open-source database with pgx driver and native UUID support
- Tailwind CSS or vanilla CSS - Choose your styling approach
Quick Start
This is subject to change as Andurel is in alpha.
I have not documented every feature or command yet, only enough to get you started and trying out the framework.
Once the framework reaches beta, I will provide more comprehensive documentation and guides.
Installation
go install github.com/mbvlabs/andurel@v1.0.0-alpha.8 (will be @latest in future)
Create Your First Project
Andurel gives you choices when creating a new project:
# Create a new project with defaults (PostgreSQL + Tailwind CSS)
andurel new myapp
# Add extensions for additional features:
andurel new myapp -e docker # Add Dockerfile for containerization
andurel new myapp -e aws-ses # Add AWS SES email integration
cd myapp
# Sync tools
andurel tool sync
# Configure environment
cp .env.example .env
# Note: you need to edit .env with your database details
# Apply database migrations
andurel database migration up
# Run the development server (with live reload)
andurel run
Your app is now running on http://localhost:8080
Generate Your First Resource
# Create a migration and add the columns you need. Note that right now, andurel
# requires you to use id uuid primary key and created_at/updated_at columns for
# all tables that you generate resources for.
andurel db migration new create_products_table
# Create a complete resource with model, controller, views, and routes
andurel generate resource Product
This single command creates everything you need for a full CRUD interface.
Project Structure
myapp/
├── assets/ # Static assets
│ ├── css/ # Compiled CSS files
│ ├── js/ # JavaScript files
│ └── assets.go
├── clients/ # External service clients
│ └── email/ # Email client (Mailpit/AWS SES)
├── cmd/
│ ├── app/ # Main web application
│ └── run/ # Development server orchestrator
├── config/ # Application configuration
│ ├── app.go # Sessions, tokens, security
│ ├── database.go # Database connection
│ ├── email.go # Email configuration
│ ├── telemetry.go # Logging, tracing, metrics config
│ └── config.go # Main config aggregator
├── controllers/ # HTTP request handlers
│ ├── controller.go # Base controller utilities
│ ├── cache.go # Cache control utilities
│ ├── pages.go # Page controllers
│ └── assets.go # Asset serving
├── css/ # Source CSS files (Tailwind input)
├── database/
│ ├── migrations/ # SQL migration files
│ ├── queries/ # SQLC query definitions
│ └── sqlc.yaml # SQLC configuration
├── email/ # Email functionality
│ ├── email.go # Email client and sending logic
│ ├── base_layout.templ # Base email template layout
│ └── components.templ # Reusable email components
├── internal/ # Internal framework packages
│ ├── hypermedia/ # Datastar/SSE helpers
│ ├── renderer/ # Template rendering
│ ├── routing/ # Routing utilities
│ ├── server/ # Server configuration
│ └── storage/ # Storage utilities
├── models/ # Data models and business logic
│ ├── model.go # Base model setup
│ ├── factories/ # Model factories for testing
│ └── internal/db/ # Generated SQLC code (do not edit)
├── queue/ # Background job processing
│ ├── jobs/ # Job definitions
│ ├── workers/ # Worker implementations
├── router/ # Routes and middleware
│ ├── router.go # Main router setup
│ ├── routes/ # Route definitions
│ ├── cookies/ # Cookie and session helpers
│ └── middleware/ # Custom middleware
├── services/ # Business logic services
│ ├── authentication.go # Authentication service
│ ├── registration.go # User registration service
│ └── reset_password.go # Password reset service
├── telemetry/ # Observability setup
│ ├── logger.go # Structured logging
│ ├── tracer.go # Distributed tracing
│ ├── metrics.go # Application metrics
│ └── helpers.go # Telemetry utilities
├── views/ # Templ templates
│ ├── components/ # Reusable template components
│ ├── *.templ # Template source files
│ └── *_templ.go # Generated Go code (do not edit)
├── .env.example # Example environment variables
├── .gitignore # Git ignore patterns
├── andurel.lock # Framework version lock file
├── Dockerfile # Container build (docker ext)
├── go.mod # Go module definition
└── go.sum # Go module checksums
Contributing
Contributions are welcome! Here's how to get started:
- Fork the repository
- Create a feature branch:
git checkout -b feature/amazing-feature
- Make your changes and add tests
- Run quality checks:
go vet ./... and golangci-lint run
- Commit your changes:
git commit -m 'Add amazing feature'
- Push to the branch:
git push origin feature/amazing-feature
- Open a Pull Request
Development Setup
git clone https://github.com/mbvlabs/andurel
cd andurel
go mod download
go test ./...
License
This project is licensed under the MIT License - see the LICENSE file for details.
Tech Stack
Andurel is built on top of excellent open-source projects:
- Echo - High-performance HTTP router and framework
- SQLC - Type-safe SQL code generation
- Templ - Type-safe Go templates
- Datastar - Hypermedia-driven frontend interactivity (RC6)
- River - Fast PostgreSQL-backed job queue and workflows
- OpenTelemetry - Observability framework for logs, traces, and metrics
- pgx - PostgreSQL driver and toolkit
- Air - Live reload for Go apps
- Tailwind CSS - Utility-first CSS framework (optional)
- Cobra - CLI framework
Acknowledgments
Inspired by Ruby on Rails and its philosophy that developer happiness and productivity matter. Built for developers who want to move fast without sacrificing type safety or code quality.