initial commit
This commit is contained in:
parent
d35510a138
commit
4a31d8a31b
75
.gitignore
vendored
75
.gitignore
vendored
@ -1,24 +1,55 @@
|
||||
# The directory Mix will write compiled artifacts to.
|
||||
/_build/
|
||||
# ---> Phoenix
|
||||
# gitignore template for Phoenix projects
|
||||
# website: http://www.phoenixframework.org/
|
||||
#
|
||||
# Recommended template: Elixir.gitignore
|
||||
|
||||
# If you run "mix test --cover", coverage assets end up here.
|
||||
/cover/
|
||||
|
||||
# The directory Mix downloads your dependencies sources to.
|
||||
/deps/
|
||||
|
||||
# Where third-party dependencies like ExDoc output generated docs.
|
||||
/doc/
|
||||
|
||||
# Ignore .fetch files in case you like to edit your project deps locally.
|
||||
/.fetch
|
||||
|
||||
# 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
|
||||
|
||||
|
||||
# Temporary files for e.g. tests
|
||||
# Temporary files
|
||||
/tmp
|
||||
|
||||
# Static artifacts
|
||||
/node_modules
|
||||
/assets/node_modules
|
||||
|
||||
# Since we are building assets from web/static,
|
||||
# we ignore priv/static. You may want to comment
|
||||
# this depending on your deployment strategy.
|
||||
/priv/static/
|
||||
|
||||
# Installer-related files
|
||||
/installer/_build
|
||||
/installer/tmp
|
||||
/installer/doc
|
||||
/installer/deps
|
||||
|
||||
# ---> Erlang
|
||||
.eunit
|
||||
*.o
|
||||
*.beam
|
||||
*.plt
|
||||
erl_crash.dump
|
||||
.concrete/DEV_MODE
|
||||
|
||||
# rebar 2.x
|
||||
.rebar
|
||||
rel/example_project
|
||||
ebin/*.beam
|
||||
deps
|
||||
|
||||
# rebar 3
|
||||
.rebar3
|
||||
_build/
|
||||
_checkouts/
|
||||
|
||||
# ---> Elixir
|
||||
/_build
|
||||
/cover
|
||||
/deps
|
||||
/doc
|
||||
/.fetch
|
||||
erl_crash.dump
|
||||
*.ez
|
||||
*.beam
|
||||
/config/*.secret.exs
|
||||
.elixir_ls/
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user