fix:repo cleanup
This commit is contained in:
+78
-115
@@ -1,138 +1,101 @@
|
||||
# ---> Node
|
||||
# Logs
|
||||
logs
|
||||
*.log
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
lerna-debug.log*
|
||||
.pnpm-debug.log*
|
||||
# -------------------------
|
||||
# Project-level .gitignore
|
||||
# Root: DADProject
|
||||
# -------------------------
|
||||
|
||||
# Diagnostic reports (https://nodejs.org/api/report.html)
|
||||
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
|
||||
# macOS
|
||||
.DS_Store
|
||||
|
||||
# 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/)
|
||||
# parcel / next / nuxt / vite / etc caches
|
||||
.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
|
||||
.cache
|
||||
|
||||
# vitepress build output
|
||||
**/.vitepress/dist
|
||||
|
||||
# vitepress cache directory
|
||||
**/.vitepress/cache
|
||||
|
||||
# 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.*
|
||||
|
||||
# -------------------------
|
||||
# Frontend: Vue (in frontend/)
|
||||
# -------------------------
|
||||
# Node deps and build output for the Vue app
|
||||
/frontend/node_modules/
|
||||
/frontend/dist/
|
||||
/frontend/build/
|
||||
/frontend/.cache/
|
||||
/frontend/.vite/
|
||||
/frontend/.serverless/
|
||||
/frontend/.vscode/
|
||||
|
||||
# Vue / Vite / Vue CLI env files (local)
|
||||
frontend/.env
|
||||
frontend/.env.local
|
||||
frontend/.env.*.local
|
||||
|
||||
# Misc frontend files that should be ignored
|
||||
/frontend/public/hot
|
||||
/frontend/public/storage
|
||||
|
||||
# -------------------------
|
||||
# Backend: PHP / Laravel (in api/)
|
||||
# -------------------------
|
||||
/api/vendor/
|
||||
/api/node_modules/
|
||||
/api/vscode/
|
||||
/api/.env
|
||||
/api/.env.*.local
|
||||
|
||||
# Laravel storage and compiled files
|
||||
/api/storage/
|
||||
/api/storage/*.key
|
||||
/api/public/storage
|
||||
/api/bootstrap/cache/*.php
|
||||
|
||||
# Homestead / vagrant
|
||||
/api/.vagrant
|
||||
/api/Homestead.yaml
|
||||
/api/Homestead.json
|
||||
|
||||
# composer
|
||||
/api/.composer/
|
||||
/api/.composer-cache
|
||||
|
||||
# Laravel specific tooling
|
||||
/api/.phpunit.result.cache
|
||||
|
||||
# -------------------------
|
||||
# Websockets: NodeJs (in websockets)
|
||||
# -------------------------
|
||||
|
||||
# -------------------------
|
||||
# Other useful ignores
|
||||
# -------------------------
|
||||
# Generated environment files used by editors/OS
|
||||
Thumbs.db
|
||||
ehthumbs.db
|
||||
Desktop.ini
|
||||
|
||||
# Logs and runtime files
|
||||
*.log
|
||||
*.tmp
|
||||
*.temp
|
||||
|
||||
# Certificate/key files
|
||||
*.pem
|
||||
*.key
|
||||
|
||||
# If you have any local secrets or files not to track, add them here:
|
||||
# /path/to/some/file
|
||||
|
||||
Reference in New Issue
Block a user