Elixir Language
엘릭서 프로그램 기본 .gitignore
수색…
비고
.gitignore 파일에는 /rel
폴더가 필요하지 않을 수도 있습니다. 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
피닉스 어플리케이션
/_build
/db
/deps
/*.ez
erl_crash.dump
/node_modules
/priv/static/
/config/prod.secret.exs
/rel
자동 생성 .gitignore
기본적으로, 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