Skip to content

Commit

Permalink
Merge pull request #299 from appwrite/chore-gitignore-update
Browse files Browse the repository at this point in the history
Add Appwrite CLI local dev directory to .gitignore files
  • Loading branch information
Meldiron authored Jul 9, 2024
2 parents 10a566a + 2ffd6ab commit 6d251a9
Show file tree
Hide file tree
Showing 87 changed files with 1,427 additions and 56 deletions.
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -129,4 +129,7 @@ dist
.yarn/install-state.gz
.pnp.*

appwrite.json
appwrite.json

# VSCode history directory
.history
5 changes: 4 additions & 1 deletion bun/starter/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -142,4 +142,7 @@ dist

# OS
## Mac
.DS_Store
.DS_Store

# Directory used by Appwrite CLI for local development
.appwrite
5 changes: 4 additions & 1 deletion bun/sync-with-meilisearch/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -142,4 +142,7 @@ dist

# OS
## Mac
.DS_Store
.DS_Store

# Directory used by Appwrite CLI for local development
.appwrite
5 changes: 4 additions & 1 deletion bun/sync-with-qdrant/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -142,4 +142,7 @@ dist

# OS
## Mac
.DS_Store
.DS_Store

# Directory used by Appwrite CLI for local development
.appwrite
148 changes: 148 additions & 0 deletions bun/whatsapp-with-vonage/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,148 @@
### Node ###
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
lerna-debug.log*
.pnpm-debug.log*

# Diagnostic reports (https://nodejs.org/api/report.html)
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json

# Runtime data
pids
*.pid
*.seed
*.pid.lock

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage
*.lcov

# nyc test coverage
.nyc_output

# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# Bower dependency directory (https://bower.io/)
bower_components

# node-waf configuration
.lock-wscript

# Compiled binary addons (https://nodejs.org/api/addons.html)
build/Release

# Dependency directories
node_modules/
jspm_packages/

# Snowpack dependency directory (https://snowpack.dev/)
web_modules/

# TypeScript cache
*.tsbuildinfo

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# Optional stylelint cache
.stylelintcache

# Microbundle cache
.rpt2_cache/
.rts2_cache_cjs/
.rts2_cache_es/
.rts2_cache_umd/

# Optional REPL history
.node_repl_history

# Output of 'npm pack'
*.tgz

# Yarn Integrity file
.yarn-integrity

# dotenv environment variable files
.env
.env.development.local
.env.test.local
.env.production.local
.env.local

# 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

# vuepress v2.x temp and cache directory
.temp

# Docusaurus cache and generated files
.docusaurus

# 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.*

### Node Patch ###
# Serverless Webpack directories
.webpack/

# Optional stylelint cache

# SvelteKit build / generate output
.svelte-kit

# End of https://www.toptal.com/developers/gitignore/api/node

# OS
## Mac
.DS_Store

# Directory used by Appwrite CLI for local development
.appwrite
5 changes: 4 additions & 1 deletion cpp/starter/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,7 @@
# Executables
*.exe
*.out
*.app
*.app

# Directory used by Appwrite CLI for local development
.appwrite
5 changes: 4 additions & 1 deletion dart/censor_with_redact/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,7 @@ doc/api/
*.js.map

.flutter-plugins
.flutter-plugins-dependencies
.flutter-plugins-dependencies

# Directory used by Appwrite CLI for local development
.appwrite
5 changes: 4 additions & 1 deletion dart/prompt_chatgpt/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,7 @@ doc/api/
*.js.map

.flutter-plugins
.flutter-plugins-dependencies
.flutter-plugins-dependencies

# Directory used by Appwrite CLI for local development
.appwrite
5 changes: 4 additions & 1 deletion dart/starter/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,7 @@ doc/api/
*.js.map

.flutter-plugins
.flutter-plugins-dependencies
.flutter-plugins-dependencies

# Directory used by Appwrite CLI for local development
.appwrite
5 changes: 4 additions & 1 deletion dart/whatsapp_with_vonage/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,7 @@ doc/api/
*.js.map

.flutter-plugins
.flutter-plugins-dependencies
.flutter-plugins-dependencies

# Directory used by Appwrite CLI for local development
.appwrite
5 changes: 4 additions & 1 deletion deno/starter/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -142,4 +142,7 @@ dist

# OS
## Mac
.DS_Store
.DS_Store

# Directory used by Appwrite CLI for local development
.appwrite
5 changes: 4 additions & 1 deletion deno/sync-with-meilisearch/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -142,4 +142,7 @@ dist

# OS
## Mac
.DS_Store
.DS_Store

# Directory used by Appwrite CLI for local development
.appwrite
5 changes: 4 additions & 1 deletion deno/whatsapp-with-vonage/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -142,4 +142,7 @@ dist

# OS
## Mac
.DS_Store
.DS_Store

# Directory used by Appwrite CLI for local development
.appwrite
5 changes: 4 additions & 1 deletion dotnet/starter/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -150,4 +150,7 @@ test-results/
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
!.vscode/extensions.json

# Directory used by Appwrite CLI for local development
.appwrite
2 changes: 2 additions & 0 deletions go/starter/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Directory used by Appwrite CLI for local development
.appwrite
3 changes: 3 additions & 0 deletions java/starter/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,6 @@ replay_pid*

# Ignore Gradle build output directory
build

# Directory used by Appwrite CLI for local development
.appwrite
3 changes: 3 additions & 0 deletions kotlin/starter/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -327,4 +327,7 @@ $RECYCLE.BIN/
# Windows shortcuts
*.lnk

# Directory used by Appwrite CLI for local development
.appwrite

# End of https://www.gitignore.io/api/java,linux,macos,windows,android,intellij,androidstudio
3 changes: 3 additions & 0 deletions kotlin/sync-with-meilisearch/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -327,4 +327,7 @@ $RECYCLE.BIN/
# Windows shortcuts
*.lnk

# Directory used by Appwrite CLI for local development
.appwrite

# End of https://www.gitignore.io/api/java,linux,macos,windows,android,intellij,androidstudio
3 changes: 3 additions & 0 deletions node-typescript/github-issue-bot/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -128,3 +128,6 @@ dist
.yarn/build-state.yml
.yarn/install-state.gz
.pnp.*

# Directory used by Appwrite CLI for local development
.appwrite
5 changes: 4 additions & 1 deletion node-typescript/starter/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -127,4 +127,7 @@ dist
.yarn/unplugged
.yarn/build-state.yml
.yarn/install-state.gz
.pnp.*
.pnp.*

# Directory used by Appwrite CLI for local development
.appwrite
5 changes: 4 additions & 1 deletion node-typescript/sync-with-meilisearch/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -127,4 +127,7 @@ dist
.yarn/unplugged
.yarn/build-state.yml
.yarn/install-state.gz
.pnp.*
.pnp.*

# Directory used by Appwrite CLI for local development
.appwrite
5 changes: 4 additions & 1 deletion node-typescript/sync-with-qdrant/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -127,4 +127,7 @@ dist
.yarn/unplugged
.yarn/build-state.yml
.yarn/install-state.gz
.pnp.*
.pnp.*

# Directory used by Appwrite CLI for local development
.appwrite
5 changes: 4 additions & 1 deletion node-typescript/whatsapp-with-vonage/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -127,4 +127,7 @@ dist
.yarn/unplugged
.yarn/build-state.yml
.yarn/install-state.gz
.pnp.*
.pnp.*

# Directory used by Appwrite CLI for local development
.appwrite
5 changes: 4 additions & 1 deletion node/analyze-with-perspectiveapi/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -127,4 +127,7 @@ dist
.yarn/unplugged
.yarn/build-state.yml
.yarn/install-state.gz
.pnp.*
.pnp.*

# Directory used by Appwrite CLI for local development
.appwrite
5 changes: 4 additions & 1 deletion node/censor-with-redact/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -127,4 +127,7 @@ dist
.yarn/unplugged
.yarn/build-state.yml
.yarn/install-state.gz
.pnp.*
.pnp.*

# Directory used by Appwrite CLI for local development
.appwrite
Loading

0 comments on commit 6d251a9

Please sign in to comment.