Elixir Language

Basic .gitignore for elixir program

Remarks#

Note that the /rel folder may not be needed in your .gitignore file. This is generated if you are using a release management tool such as exrm

A basic .gitignore for Elixir

Example

### Elixir ###
/_build
/cover
/deps
erl_crash.dump
*.ez

### Erlang ###
.eunit
deps
*.beam
*.plt
ebin
rel/example_project
.concrete/DEV_MODE
.rebar


## Standalone elixir application
    /_build
    /cover
    /deps
    erl_crash.dump
    *.ez
    /rel



## Phoenix application
    /_build
    /db
    /deps
    /*.ez
    erl_crash.dump
    /node_modules
    /priv/static/
    /config/prod.secret.exs
    /rel

## Auto-generated .gitignore


This modified text is an extract of the original Stack Overflow Documentation created by the contributors and released under CC BY-SA 3.0 This website is not affiliated with Stack Overflow