fix: adapt .gitignore(s) to specific development environment

This commit is contained in:
Mauro Condarelli 2021-09-10 12:36:44 +02:00
commit 9318658a16
3 changed files with 100 additions and 2 deletions

6
.gitignore vendored
View file

@ -7,6 +7,8 @@ temp
.env.test.local
.env.production.local
.idea
# Created by https://www.toptal.com/developers/gitignore/api/vscode,yarn,react,node
# Edit at https://www.toptal.com/developers/gitignore?templates=vscode,yarn,react,node
@ -156,9 +158,9 @@ sketch
# if you are NOT using Zero-installs, then:
# comment the following lines
!.yarn/cache
#!.yarn/cache
# and uncomment the following lines
# .pnp.*
.pnp.*
# End of https://www.toptal.com/developers/gitignore/api/vscode,yarn,react,node

48
backend/.gitignore vendored
View file

@ -33,6 +33,54 @@ jspm_packages/
# Yarn Integrity file
.yarn-integrity
# dotenv environment variables file
.env
.env.test
.env.production
# parcel-bundler cache (https://parceljs.org/)
.cache
.parcel-cache
# Next.js build output
.next
out
# Nuxt.js build / generate output
.nuxt
dist
# Gatsby files
.cache/
# Comment in the public line in if your project uses Gatsby and not Next.js
# https://nextjs.org/blog/next-9-1#public-directory-support
# public
# vuepress build output
.vuepress/dist
# Serverless directories
.serverless/
# FuseBox cache
.fusebox/
# DynamoDB Local files
.dynamodb/
# TernJS port file
.tern-port
# Stores VSCode versions used for testing VSCode extensions
.vscode-test
# yarn v2
.yarn/cache
.yarn/unplugged
.yarn/build-state.yml
.yarn/install-state.gz
.pnp.*
# Misc
.DS_Store
.env.local

48
frontend/.gitignore vendored
View file

@ -9,6 +9,54 @@ coverage
# Production
build
# dotenv environment variables file
.env
.env.test
.env.production
# parcel-bundler cache (https://parceljs.org/)
.cache
.parcel-cache
# Next.js build output
.next
out
# Nuxt.js build / generate output
.nuxt
dist
# Gatsby files
.cache/
# Comment in the public line in if your project uses Gatsby and not Next.js
# https://nextjs.org/blog/next-9-1#public-directory-support
# public
# vuepress build output
.vuepress/dist
# Serverless directories
.serverless/
# FuseBox cache
.fusebox/
# DynamoDB Local files
.dynamodb/
# TernJS port file
.tern-port
# Stores VSCode versions used for testing VSCode extensions
.vscode-test
# yarn v2
.yarn/cache
.yarn/unplugged
.yarn/build-state.yml
.yarn/install-state.gz
.pnp.*
# Misc
.DS_Store
.env.local