Skip to content

Latest commit

 

History

History
25 lines (20 loc) · 490 Bytes

File metadata and controls

25 lines (20 loc) · 490 Bytes

Untitled notebook

Code.require_file("/meadow/bootstrap.exs")
Meadow.Bootstrap.bootstrap()
Mix.install([
  # Add additional dependencies here
])

Global Imports and Aliases

import Ecto.Query
alias Meadow.Data.{Collections, FileSets, IndexBatcher, Indexer, Works}
alias Meadow.Data.Schemas.{Collection, FileSet, Work}
alias Meadow.Ingest.{Projects, Rows, Sheets}
alias Meadow.Ingest.Schemas.{Project, Row, Sheet}
alias Meadow.Repo

Section