40 lines
353 B
Plaintext
40 lines
353 B
Plaintext
# Git
|
|
.git
|
|
.gitignore
|
|
|
|
# Mix artifacts
|
|
/_build
|
|
/deps
|
|
*.ez
|
|
|
|
# Build artifacts
|
|
erl_crash.dump
|
|
|
|
# Static artifacts
|
|
/priv/static/
|
|
|
|
# Environment files
|
|
.env
|
|
.env.local
|
|
|
|
# Editor files
|
|
.vscode
|
|
.idea
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Test files
|
|
/cover
|
|
/test
|
|
|
|
# Documentation
|
|
/doc
|
|
|
|
# Node modules (if any frontend code was in here)
|
|
node_modules
|