Skip to content

Commit

Permalink
Adjust .gitignore and ignore .env* files
Browse files Browse the repository at this point in the history
As I do the setup not via aliases, but rather
`.env` files. It's also generally good
to keep env files inside the gitignore.
  • Loading branch information
danburonline committed Nov 16, 2023
1 parent 7211ae4 commit 8e38871
Showing 1 changed file with 23 additions and 3 deletions.
26 changes: 23 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,18 +1,38 @@
# Cache files
.cache/

# macOS specific files
.DS_Store

# Environment files
.env*

# Distribution/build files
dist/
dist_refresh/

# Plugins directory
/plugins/

# Packagge manager files
node_modules/
yarn-error.log

# Storybook files
storybook-static/

# Testing files
coverage/
.vscode
yarn-error.log
cypress/screenshots/
cypress/videos/
cypress.env.json

# Editor-specific files
.vscode/
*.iml
.idea
.idea/

# Others
*.sops*
.sops-*.*
*.key
Expand Down

0 comments on commit 8e38871

Please sign in to comment.