サーチ…


備考

.gitignoreファイルに/relフォルダが必要ない場合があることに注意してください。これは、 exrmなどのリリース管理ツールを使用している場合に生成されexrm

エリクシルの基本的なgitignore

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

# Common additions for various operating systems:
# MacOS
.DS_Store

# Common additions for various editors:
# JetBrains IDEA, IntelliJ, PyCharm, RubyMine etc.
.idea 

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

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

スタンドアロンエリクサー適用

/_build
/cover
/deps
erl_crash.dump
*.ez
/rel

Phoenixアプリケーション

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

自動生成.gitignore

デフォルトでは、 mix new <projectname>mix new <projectname>と、プロジェクトルートにElixirに適した.gitignoreファイルが生成されます。

# The directory Mix will write compiled artifacts to.
/_build

# If you run "mix test --cover", coverage assets end up here.
/cover

# The directory Mix downloads your dependencies sources to.
/deps

# Where 3rd-party dependencies like ExDoc output generated docs.
/doc

# If the VM crashes, it generates a dump, let's ignore it too.
erl_crash.dump

# Also ignore archive artifacts (built via "mix archive.build").
*.ez


Modified text is an extract of the original Stack Overflow Documentation
ライセンスを受けた CC BY-SA 3.0
所属していない Stack Overflow