Documentation

Getting Started

Installation

Add this library to your projects dependencies along with the driver in your shard.yml. This can be used with any framework but was originally designed to work with the amber framework in mind. This library will work with Kemal or any other framework as well.

dependencies:
  granite:
    github: amberframework/granite

  # Pick your database
  mysql:
    github: crystal-lang/crystal-mysql

  sqlite3:
    github: crystal-lang/crystal-sqlite3

  pg:
    github: will/crystal-pg

Register a Connection

Next you will need to register a connection. This should be one of the first things in your main Crystal file, before Granite is required.

Supported adapters include: Mysql, Pg, and Sqlite.

Example Model

Here is an example Granite model using the connection registered above.

Additional Documentation

Models

CRUD

Querying

Relationships

Validation

Callbacks

Migrations

Imports

Last updated