die .ignore-Files angepasst
This commit is contained in:
@@ -1,10 +1,61 @@
|
||||
node-modules
|
||||
PYTHON
|
||||
.gitignore
|
||||
.dockerignore
|
||||
build_and_copy.sh
|
||||
buildit.sh
|
||||
copycontainder.sh
|
||||
# Node modules
|
||||
node_modules/
|
||||
|
||||
# Logs
|
||||
logs/
|
||||
log/
|
||||
*.log
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
|
||||
# Dependency directories
|
||||
dist/
|
||||
build/
|
||||
bower_components/
|
||||
|
||||
# Test, coverage, and debug
|
||||
coverage/
|
||||
.nyc_output/
|
||||
*.out
|
||||
*.tmp
|
||||
|
||||
# Editor directories and files
|
||||
.vscode/
|
||||
.idea/
|
||||
*.swp
|
||||
*.bak
|
||||
*~
|
||||
|
||||
# Mac system files
|
||||
.DS_Store
|
||||
|
||||
# Environment files
|
||||
.env
|
||||
.env.*
|
||||
|
||||
# Dumps and large sensor data
|
||||
akws/dump/
|
||||
*.bson
|
||||
*.metadata.json
|
||||
|
||||
# Public generated files
|
||||
public/js/*.map
|
||||
public/js/*.tmp
|
||||
|
||||
# Ignore Python cache (if any)
|
||||
__pycache__/
|
||||
*.pyc
|
||||
|
||||
# Project-specific
|
||||
Feinstaub_ToDos.pdf
|
||||
this_is_MacBig
|
||||
akws
|
||||
|
||||
# Build/Deployment files (nicht ins Image kopieren)
|
||||
docker-compose.yml
|
||||
docker-compose.*.yml
|
||||
Dockerfile
|
||||
Dockerfile*
|
||||
nginx-proxy
|
||||
*.sh
|
||||
*.md
|
||||
|
||||
87
.gitignore
vendored
87
.gitignore
vendored
@@ -1,8 +1,91 @@
|
||||
/node_modules/
|
||||
Feinstaub_ToDos.pdf
|
||||
this_is_MacBig
|
||||
.idea
|
||||
/node_modules/
|
||||
|
||||
# Logs
|
||||
logs/
|
||||
log/
|
||||
*.log
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
|
||||
# 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/
|
||||
|
||||
# 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/
|
||||
|
||||
# Compiled binary addons (https://nodejs.org/api/addons.html)
|
||||
build/Release
|
||||
|
||||
# Dependency directories
|
||||
dist/
|
||||
build/
|
||||
|
||||
# Optional npm cache directory
|
||||
.npm/
|
||||
|
||||
# Optional eslint cache
|
||||
.eslintcache
|
||||
|
||||
# dotenv environment variables file
|
||||
.env
|
||||
.env.local.custom
|
||||
.env.*
|
||||
|
||||
# VS Code settings
|
||||
.vscode/
|
||||
|
||||
# Mac system files
|
||||
.DS_Store
|
||||
|
||||
# Public generated files
|
||||
public/js/*.map
|
||||
public/js/*.tmp
|
||||
|
||||
# Ignore dumps and large sensor data
|
||||
akws/dump/
|
||||
|
||||
# Ignore test and debug scripts output
|
||||
*.out
|
||||
*.tmp
|
||||
|
||||
# Ignore database dumps
|
||||
*.bson
|
||||
*.metadata.json
|
||||
|
||||
# Ignore backup files
|
||||
*~
|
||||
*.bak
|
||||
*.swp
|
||||
|
||||
# Ignore coverage reports
|
||||
coverage/
|
||||
|
||||
# Ignore Python cache (if any)
|
||||
__pycache__/
|
||||
*.pyc
|
||||
|
||||
# IDEs
|
||||
.idea
|
||||
|
||||
# Project-specific
|
||||
Feinstaub_ToDos.pdf
|
||||
this_is_MacBig
|
||||
akws
|
||||
|
||||
Reference in New Issue
Block a user