Skip to content

Commit edd1159

Browse files
committed
feat: Add .gitignore for Node.js project
- Exclude node_modules/ and package-lock.json from version control - Ignore environment variables (.env) and system files (.DS_Store) - Exclude build artifacts (dist/, build/) and log files (*.log) - Ignore VS Code workspace settings (.vscode/) - Reduce repository size and prevent committing sensitive data
1 parent f7ed68f commit edd1159

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

.gitignore

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
node_modules/
2+
package-lock.json
3+
.env
4+
.DS_Store
5+
*.log
6+
dist/
7+
build/
8+
.vscode/

0 commit comments

Comments
 (0)