Helpers for using SQL views with Ecto
at master 30 lines 735 B view raw
1# SPDX-FileCopyrightText: 2026 Łukasz Niemier <~@hauleth.dev> 2# 3# SPDX-License-Identifier: Apache-2.0 4 5# The directory Mix will write compiled artifacts to. 6/_build/ 7 8# If you run "mix test --cover", coverage assets end up here. 9/cover/ 10 11# The directory Mix downloads your dependencies sources to. 12/deps/ 13 14# Where third-party dependencies like ExDoc output generated docs. 15/doc/ 16 17# Ignore .fetch files in case you like to edit your project deps locally. 18/.fetch 19 20# If the VM crashes, it generates a dump, let's ignore it too. 21erl_crash.dump 22 23# Also ignore archive artifacts (built via "mix archive.build"). 24*.ez 25 26# Ignore package tarball (built via "mix hex.build"). 27ecto_view-*.tar 28 29# Temporary files, for example, from tests. 30/tmp/