Skip to content

inoas/gleam-feather

This branch is up to date with violetbuse/feather:master.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Violet BuseViolet Buse
Violet Buse
and
Violet Buse
Aug 14, 2024
045ca1d · Aug 14, 2024

History

8 Commits
Jun 26, 2024
Aug 10, 2024
Jun 26, 2024
Jun 26, 2024
Jun 26, 2024
Aug 14, 2024
Aug 10, 2024

Repository files navigation

feather

Package Version Hex Docs

gleam add feather

Add the following fields to your gleam.toml file:

# this can of course be anything you like
migrations_dir = "./priv/migrations"
schemafile = "./schema.sql"

Then run the command gleam run -m feather -- new "Initial schema migration" and make any changes you like.

Running the command gleam run -m feather -- schema will create the file ./schema.sql, (or whatever you set in your gleam.toml) with the schema of your database after all migrations have been applied.

import feather
import gleam/result
import gleam/erlang
import sqlight

pub fn main() {
  let assert Ok(priv_dir) = erlang.priv_directory("my_module_name")
  use migrations <- result.try(feather.get_migrations(priv_dir <> "/migrations"))
  use connection <- feather.connect(feather.Config(..feather.default_config(), file: "./database.db"))
  feather.migrate(migrations, on: connection)
}

Further documentation can be found at https://hexdocs.pm/feather.

Development

gleam run   # Run the project
gleam test  # Run the tests
gleam shell # Run an Erlang shell

About

Gleam + Sqlight as a feather

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Gleam 100.0%