Elixir Language
अमृत कार्यक्रम के लिए बेसिक .gitignore
खोज…
टिप्पणियों
ध्यान दें कि /rel
फ़ोल्डर को आपकी .gitignore फ़ाइल में आवश्यकता नहीं हो सकती है। यह तब उत्पन्न होता है जब आप किसी exrm
मैनेजमेंट टूल का उपयोग कर रहे होते हैं जैसे exrm
एक बुनियादी। अमृत के लिए
/_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
स्वतः उत्पन्न
डिफ़ॉल्ट रूप से, mix new <projectname>
परियोजना रूट में एक .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