Skip to content

Commit 54c0a37

Browse files
committed
chore: Add .gitignore file
1 parent ab1c14d commit 54c0a37

1 file changed

Lines changed: 57 additions & 0 deletions

File tree

.gitignore

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,3 +35,60 @@ kati_portfolio-*.tar
3535
npm-debug.log
3636
/assets/node_modules/
3737

38+
# Ignore all files in the node_modules directory.
39+
/node_modules/
40+
41+
# Ignore all files in the _build directory.
42+
/_build/
43+
44+
# Ignore all files in the deps directory.
45+
/deps/
46+
47+
# Ignore all files in the cover directory.
48+
/cover/
49+
50+
# Ignore all files in the doc directory.
51+
/doc/
52+
53+
# Ignore all files in the priv/static directory.
54+
/priv/static/
55+
56+
# Ignore all files in the test directory.
57+
/test/
58+
59+
# Ignore all files in the .elixir_ls directory.
60+
/.elixir_ls/
61+
62+
# Ignore all files in the .vscode directory.
63+
/.vscode/
64+
65+
# Ignore all files in the .idea directory.
66+
/.idea/
67+
68+
# Ignore all files in the .DS_Store directory.
69+
.DS_Store
70+
71+
# Ignore all files in the .env file.
72+
.env
73+
74+
# Ignore all files in the .env.local file.
75+
.env.local
76+
77+
# Ignore all files in the .env.*.local file.
78+
.env.*.local
79+
80+
# Ignore all files in the npm-debug.log file.
81+
npm-debug.log*
82+
83+
# Ignore all files in the yarn-debug.log file.
84+
yarn-debug.log*
85+
86+
# Ignore all files in the yarn-error.log file.
87+
yarn-error.log*
88+
89+
# Ignore all files in the .env.test file.
90+
.env.test
91+
92+
# Ignore all files in the .env.production file.
93+
.env.production
94+

0 commit comments

Comments
 (0)