Skip to content

Commit

Permalink
chore(examples): add .gitignore to all examples
Browse files Browse the repository at this point in the history
  • Loading branch information
dirkdev98 committed Jun 1, 2023
1 parent 70573d7 commit d8a5ebb
Show file tree
Hide file tree
Showing 4 changed files with 128 additions and 0 deletions.
32 changes: 32 additions & 0 deletions examples/crud-basic/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# OS
.DS_Store

# IDE
.idea
.vscode

# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# Dependency directories
node_modules

# Various tools + cache
.cache
.clinic
coverage
.nyc_output

# Common build directories
dist
out

# Generator output
structure.sql

# Local environment
.env.local
32 changes: 32 additions & 0 deletions examples/crud-inline/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# OS
.DS_Store

# IDE
.idea
.vscode

# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# Dependency directories
node_modules

# Various tools + cache
.cache
.clinic
coverage
.nyc_output

# Common build directories
dist
out

# Generator output
structure.sql

# Local environment
.env.local
32 changes: 32 additions & 0 deletions examples/crud-nested/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# OS
.DS_Store

# IDE
.idea
.vscode

# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# Dependency directories
node_modules

# Various tools + cache
.cache
.clinic
coverage
.nyc_output

# Common build directories
dist
out

# Generator output
structure.sql

# Local environment
.env.local
32 changes: 32 additions & 0 deletions examples/file-handling/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# OS
.DS_Store

# IDE
.idea
.vscode

# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# Dependency directories
node_modules

# Various tools + cache
.cache
.clinic
coverage
.nyc_output

# Common build directories
dist
out

# Generator output
structure.sql

# Local environment
.env.local

0 comments on commit d8a5ebb

Please sign in to comment.