From 4a31d8a31b2270b71bc3926cd88ba574dee16cee Mon Sep 17 00:00:00 2001 From: Ryan Pandya Date: Mon, 28 Dec 2020 14:35:52 -0800 Subject: [PATCH] initial commit --- .gitignore | 75 ++++++++++++++++++++++++++++++++++++++---------------- 1 file changed, 53 insertions(+), 22 deletions(-) diff --git a/.gitignore b/.gitignore index 48bf740..79b1675 100644 --- a/.gitignore +++ b/.gitignore @@ -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/ +