The .gitignore file excludes files from version control:
node_modules/
dist/
.env
*.log
.DS_Store
coverage/
Never commit node_modules (too large) or .env (contains secrets). Commit package-lock.json to ensure consistent installs.
##### ###### ##### ### # # ### # # ###### ## ## ## ## ## ## ## # # # # # ## ##### #### ##### # # # # # # # #### ## # ## ## ## ## # # # # # ## ## # ###### ## ### # ### # ######
##### ###### ##### ### # # ### # # ###### ## ## ## ## ## ## ## # # # # # ## ##### #### ##### # # # # # # # #### ## # ## ## ## ## # # # # # ## ## # ###### ## ### # ### # ######
Keep the repo clean
The .gitignore file excludes files from version control:
node_modules/
dist/
.env
*.log
.DS_Store
coverage/
Never commit node_modules (too large) or .env (contains secrets). Commit package-lock.json to ensure consistent installs.