Skip to content
This repository was archived by the owner on Jan 27, 2025. It is now read-only.

Repository files navigation

Flakes

Language and library to create data warehouse diagrams and schemas.

Example

This input

Fact purchase {
  int id -> customer.id;
  int item -> item.id;
  int price;
  int customer;
}

Dimension customer {
  int id;
  text name;
}

Dimension item {
  int id;
  text name;
}

will produce this output

erDiagram

purchase }|--|| item:"id"
purchase }|--|| customer:"id"
purchase {
        int id
        int item
        int price
        int customer
}

customer {
        int id
        text name
}

item {
        int id
        text name
}
Loading

later on the language should support the transpilation to SQL.

About

Language and library to create datawarehouse diagrams and schemas.

Resources

Contributing

Stars

0 stars

Watchers

1 watching

Forks

Releases

Packages

Used by

Contributors

Languages