Skip to content

Latest commit

 

History

History
27 lines (18 loc) · 486 Bytes

File metadata and controls

27 lines (18 loc) · 486 Bytes

Installation

This guide walks you through setting up NestedSets in your Elixir application.

Requirements

  • Elixir 1.16 or later
  • OTP 25 or later
  • An Ecto-based application with PostgreSQL, SQLite, or MySQL

Add Dependency

Add nested_sets to your list of dependencies in mix.exs:

def deps do
  [
    {:nested_sets, "~> 0.1.0"}
  ]
end

Run mix deps.get to fetch the dependency.

Next Steps

Check out the Getting Started guide.