Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

cleanup(.gitignore): import order from phx.new template #2869

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 18 additions & 22 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,42 +20,38 @@ erl_crash.dump
# Also ignore archive artifacts (built via "mix archive.build").
*.ez

# Temporary files, for example, from tests.
/tmp/

# Ignore package tarball (built via "mix hex.build").
skate-*.tar

# Ignore Storybook Logs
build-storybook.log
# Ignore assets that are produced by build tools.
/priv/static/
## New Phoenix Assets Location
/priv/static/assets

# Ignore Chromatic Logs
chromatic.log
# Ignore digested assets cache.
/priv/static/cache_manifest.json

# If NPM crashes, it generates a log, let's ignore it too.
# In case you use Node.js/npm, you want to ignore these.
npm-debug.log

# The directory NPM downloads your dependencies sources to.
node_modules

# Since we are building assets from assets/,
# we ignore priv/static. You may want to comment
# this depending on your deployment strategy.
/priv/static/

# Files matching config/*.secret.exs pattern contain sensitive
# data and you should not commit them into version control.
#
# Alternatively, you may comment the line below and commit the
# secrets files as long as you replace their contents by environment
# variables.
/config/*.secret.exs
/assets/node_modules/

# Self signed certificates to access Skate over HTTPS when developing
/priv/cert/selfsigned*.pem

# Ignore Storybook Logs
build-storybook.log
assets/build-storybook.log

# Ignore Chromatic Logs
chromatic.log

# dev and test cache files for faster loading
*.terms

# User ENV variables
.envrc.private

.DS_Store
assets/build-storybook.log
Loading