an implementation of the polyproto federation protocol
1# SPDX-FileCopyrightText: NONE
2#
3# SPDX-License-Identifier: CC0-1.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# If the VM crashes, it generates a dump, let's ignore it too.
18erl_crash.dump
19
20# Also ignore archive artifacts (built via "mix archive.build").
21*.ez
22
23# Temporary files, for example, from tests.
24/tmp/
25
26# Nix-generated files
27.direnv
28result
29result-*
30.pre-commit-config.yaml
31
32# Editor configuration
33.dir-locals.el
34
35# Rust compilation artifacts
36/target
37
38# Files generated during local development
39*.csr
40*.der
41*.pem
42*.key
43
44# NIFs produced by rustler's build
45apps/*/priv/native
46
47# Local PostgreSQL database
48/.pgdata-local