created: monorepo with front & back
This commit is contained in:
181
.gitignore
vendored
Normal file
181
.gitignore
vendored
Normal file
@@ -0,0 +1,181 @@
|
||||
# ---> Java
|
||||
# Compiled class file
|
||||
backend/*.class
|
||||
|
||||
# Log file
|
||||
backend/*.log
|
||||
|
||||
# BlueJ files
|
||||
backend/*.ctxt
|
||||
|
||||
# Mobile Tools for Java (J2ME)
|
||||
backend/.mtj.tmp/
|
||||
|
||||
# Package Files #
|
||||
backend/*.jar
|
||||
backend/*.war
|
||||
backend/*.nar
|
||||
backend/*.ear
|
||||
backend/*.zip
|
||||
backend/*.tar.gz
|
||||
backend/*.rar
|
||||
|
||||
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
|
||||
backend/hs_err_pid*
|
||||
backend/replay_pid*
|
||||
|
||||
backend/.idea
|
||||
|
||||
|
||||
# ---> Node
|
||||
# Logs
|
||||
frontend/logs
|
||||
frontend/*.log
|
||||
frontend/npm-debug.log*
|
||||
frontend/yarn-debug.log*
|
||||
frontend/yarn-error.log*
|
||||
frontend/lerna-debug.log*
|
||||
frontend/.pnpm-debug.log*
|
||||
|
||||
# Diagnostic reports (https://nodejs.org/api/report.html)
|
||||
frontend/report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
|
||||
|
||||
# Runtime data
|
||||
frontend/pids
|
||||
frontend/*.pid
|
||||
frontend/*.seed
|
||||
frontend/*.pid.lock
|
||||
|
||||
# Directory for instrumented libs generated by jscoverage/JSCover
|
||||
frontend/lib-cov
|
||||
|
||||
# Coverage directory used by tools like istanbul
|
||||
frontend/coverage
|
||||
frontend/*.lcov
|
||||
|
||||
# nyc test coverage
|
||||
frontend/.nyc_output
|
||||
|
||||
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
|
||||
frontend/.grunt
|
||||
|
||||
# Bower dependency directory (https://bower.io/)
|
||||
frontend/bower_components
|
||||
|
||||
# node-waf configuration
|
||||
frontend/.lock-wscript
|
||||
|
||||
# Compiled binary addons (https://nodejs.org/api/addons.html)
|
||||
frontend/build/Release
|
||||
|
||||
# Dependency directories
|
||||
frontend/node_modules/
|
||||
frontend/jspm_packages/
|
||||
|
||||
# Snowpack dependency directory (https://snowpack.dev/)
|
||||
frontend/web_modules/
|
||||
|
||||
# TypeScript cache
|
||||
frontend/*.tsbuildinfo
|
||||
|
||||
# Optional npm cache directory
|
||||
frontend/.npm
|
||||
|
||||
# Optional eslint cache
|
||||
frontend/.eslintcache
|
||||
|
||||
# Optional stylelint cache
|
||||
frontend/.stylelintcache
|
||||
|
||||
# Microbundle cache
|
||||
frontend/.rpt2_cache/
|
||||
frontend/.rts2_cache_cjs/
|
||||
frontend/.rts2_cache_es/
|
||||
frontend/.rts2_cache_umd/
|
||||
|
||||
# Optional REPL history
|
||||
frontend/.node_repl_history
|
||||
|
||||
# Output of 'npm pack'
|
||||
frontend/*.tgz
|
||||
|
||||
# Yarn Integrity file
|
||||
frontend/.yarn-integrity
|
||||
|
||||
# dotenv environment variable files
|
||||
frontend/.env
|
||||
frontend/.env.development.local
|
||||
frontend/.env.test.local
|
||||
frontend/.env.production.local
|
||||
frontend/.env.local
|
||||
|
||||
# parcel-bundler cache (https://parceljs.org/)
|
||||
frontend/.cache
|
||||
frontend/.parcel-cache
|
||||
|
||||
# Next.js build output
|
||||
frontend/.next
|
||||
frontend/out
|
||||
|
||||
# Nuxt.js build / generate output
|
||||
frontend/.nuxt
|
||||
frontend/dist
|
||||
|
||||
# Gatsby files
|
||||
frontend/.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
|
||||
frontend/.vuepress/dist
|
||||
|
||||
# vuepress v2.x temp and cache directory
|
||||
frontend/.temp
|
||||
frontend/.cache
|
||||
|
||||
# vitepress build output
|
||||
frontend/**/.vitepress/dist
|
||||
|
||||
# vitepress cache directory
|
||||
frontend/**/.vitepress/cache
|
||||
|
||||
# Docusaurus cache and generated files
|
||||
frontend/.docusaurus
|
||||
|
||||
# Serverless directories
|
||||
frontend/.serverless/
|
||||
|
||||
# FuseBox cache
|
||||
frontend/.fusebox/
|
||||
|
||||
# DynamoDB Local files
|
||||
frontend/.dynamodb/
|
||||
|
||||
# TernJS port file
|
||||
frontend/.tern-port
|
||||
|
||||
# Stores VSCode versions used for testing VSCode extensions
|
||||
frontend/.vscode-test
|
||||
|
||||
# yarn v2
|
||||
frontend/.yarn/cache
|
||||
frontend/.yarn/unplugged
|
||||
frontend/.yarn/build-state.yml
|
||||
frontend/.yarn/install-state.gz
|
||||
frontend/.pnp.*
|
||||
|
||||
# ---> VisualStudioCode
|
||||
frontend/.vscode/*
|
||||
frontend/!.vscode/settings.json
|
||||
frontend/!.vscode/tasks.json
|
||||
frontend/!.vscode/launch.json
|
||||
frontend/!.vscode/extensions.json
|
||||
frontend/!.vscode/*.code-snippets
|
||||
|
||||
# Local History for Visual Studio Code
|
||||
frontend/.history/
|
||||
|
||||
# Built Visual Studio Code Extensions
|
||||
frontend/*.vsix
|
||||
|
||||
Reference in New Issue
Block a user