migrated core_nest to mainroom
This commit is contained in:
102
mainroom/ctrl/.exclude
Normal file
102
mainroom/ctrl/.exclude
Normal file
@@ -0,0 +1,102 @@
|
||||
# Exclude patterns for rsync deployment
|
||||
# Used by deploy.sh for all sync operations
|
||||
|
||||
# =============================================================================
|
||||
# VERSION CONTROL
|
||||
# =============================================================================
|
||||
.git
|
||||
.gitignore
|
||||
|
||||
# =============================================================================
|
||||
# PYTHON
|
||||
# =============================================================================
|
||||
*.pyc
|
||||
*.pyo
|
||||
*.pyd
|
||||
__pycache__
|
||||
.pytest_cache
|
||||
.mypy_cache
|
||||
.coverage
|
||||
htmlcov
|
||||
*.egg-info
|
||||
dist
|
||||
build
|
||||
.venv
|
||||
venv
|
||||
env
|
||||
ENV
|
||||
|
||||
# Django build artifacts
|
||||
staticfiles
|
||||
*.sqlite3
|
||||
*.db
|
||||
|
||||
# =============================================================================
|
||||
# NODE/JAVASCRIPT
|
||||
# =============================================================================
|
||||
node_modules
|
||||
.next
|
||||
.nuxt
|
||||
dist
|
||||
out
|
||||
.cache
|
||||
.parcel-cache
|
||||
coverage
|
||||
.nyc_output
|
||||
.npm
|
||||
.pnp
|
||||
.pnp.js
|
||||
.eslintcache
|
||||
.turbo
|
||||
|
||||
# =============================================================================
|
||||
# IDE / EDITOR
|
||||
# =============================================================================
|
||||
.vscode
|
||||
.idea
|
||||
*.swp
|
||||
*.swo
|
||||
*~
|
||||
|
||||
# =============================================================================
|
||||
# OS
|
||||
# =============================================================================
|
||||
.DS_Store
|
||||
Thumbs.db
|
||||
|
||||
# =============================================================================
|
||||
# LOGS
|
||||
# =============================================================================
|
||||
*.log
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
|
||||
# =============================================================================
|
||||
# ENVIRONMENT FILES
|
||||
# =============================================================================
|
||||
.env
|
||||
.env.*
|
||||
!.env.example
|
||||
|
||||
# =============================================================================
|
||||
# CORE_NEST SPECIFIC
|
||||
# =============================================================================
|
||||
|
||||
# Large dev seed data (use test/prod on server)
|
||||
init-db/seed-dev
|
||||
|
||||
# Dumps directory (source for seed files)
|
||||
dumps
|
||||
|
||||
# Build artifacts (Django collectstatic output - not album/static which has Prism.js)
|
||||
amar/src/back/static
|
||||
amar/src/back/staticfiles
|
||||
media
|
||||
|
||||
# =============================================================================
|
||||
# PAWPRINT SPECIFIC
|
||||
# =============================================================================
|
||||
|
||||
# Local workspace/definition folder (not for production)
|
||||
def/
|
||||
Reference in New Issue
Block a user