refactor(SQL): Staging tables and Calc stored procedures used for modular stored procedure archicture for scalability. Implemented for Product Catalogue. \n BREAKING CHANGE: BIT argument a_debug added to all but basic stored procedures for analysis of performance and results.
This commit is contained in:
71
.gitignore
vendored
Normal file
71
.gitignore
vendored
Normal file
@@ -0,0 +1,71 @@
|
||||
|
||||
# Ignore Git files
|
||||
git-filter-repo/
|
||||
|
||||
# Ignore compiled files
|
||||
*.class
|
||||
*.o
|
||||
*.pyc
|
||||
|
||||
# Ignore logs and databases
|
||||
*.log
|
||||
|
||||
# Ignore logs and databases
|
||||
# *.sql
|
||||
# *.sqlite
|
||||
|
||||
# Ignore OS generated files
|
||||
.DS_Store
|
||||
.DS_Store?
|
||||
._*
|
||||
.Spotlight-V100
|
||||
.Trashes
|
||||
ehthumbs.db
|
||||
Thumbs.db
|
||||
|
||||
# Ignore IDE and editor files
|
||||
.vscode/
|
||||
.idea/
|
||||
*.swp
|
||||
*.swo
|
||||
*.sublime-workspace
|
||||
|
||||
# Ignore package management directories
|
||||
node_modules/
|
||||
jspm_packages/
|
||||
bower_components/
|
||||
|
||||
# Ignore build directories
|
||||
build/
|
||||
dist/
|
||||
out/
|
||||
|
||||
# Ignore environment and config files
|
||||
.env
|
||||
config.js
|
||||
secrets.yaml
|
||||
|
||||
# Ignore dependency lock files (uncomment if you want to ignore)
|
||||
# package-lock.json
|
||||
# yarn.lock
|
||||
|
||||
# Ignore personal TODO lists
|
||||
TODO.md
|
||||
|
||||
# Ignore all files in a directory
|
||||
temp_files/
|
||||
|
||||
# Ignore all .txt files in the doc/ directory
|
||||
doc/*.txt
|
||||
|
||||
# But don't ignore doc/important.txt, even though we're ignoring .txt files above
|
||||
!doc/important.txt
|
||||
|
||||
# Ignore all .pdf files in the doc/ directory and any of its subdirectories
|
||||
doc/**/*.pdf
|
||||
|
||||
# Ignore deprecated files
|
||||
DEPRECATED/
|
||||
|
||||
# Ignore virtual environments
|
||||
env_web/
|
||||
Reference in New Issue
Block a user