222 lines
4.3 KiB
Plaintext
222 lines
4.3 KiB
Plaintext
# ============================================================
|
|
# Automiz_app — repository .gitignore
|
|
# Apps covered:
|
|
# Python (Flask) : cms_backend, cms_asset_manager, cms_workflow
|
|
# Node : asset_manager_app_web_socket, dbase_manager
|
|
# React (CRA) : cms_frontend_new
|
|
# Flutter / Dart : planxo
|
|
# Static HTML : tpm_artwork_template_creater_and_editor
|
|
# Note: keep pubspec.lock, package-lock.json and requirements.txt TRACKED.
|
|
# ============================================================
|
|
|
|
# ------------------------------------------------------------
|
|
# Secrets & environment — NEVER commit
|
|
# ------------------------------------------------------------
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
!.env.sample
|
|
!.env.template
|
|
*.pem
|
|
*.key
|
|
*.p12
|
|
*.pfx
|
|
*.keystore
|
|
*.jks
|
|
credentials
|
|
aws.json
|
|
service-account*.json
|
|
|
|
# ------------------------------------------------------------
|
|
# OS / editor / IDE
|
|
# ------------------------------------------------------------
|
|
.DS_Store
|
|
.DS_Store?
|
|
._*
|
|
.AppleDouble
|
|
.LSOverride
|
|
.Spotlight-V100
|
|
.Trashes
|
|
Icon?
|
|
Thumbs.db
|
|
ehthumbs.db
|
|
Desktop.ini
|
|
.idea/
|
|
.vscode/
|
|
*.iml
|
|
*.ipr
|
|
*.iws
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
*.sublime-workspace
|
|
|
|
# ------------------------------------------------------------
|
|
# Logs & temp
|
|
# ------------------------------------------------------------
|
|
*.log
|
|
logs/
|
|
*.tmp
|
|
*.temp
|
|
*.pid
|
|
*.seed
|
|
*.bak
|
|
*.orig
|
|
|
|
# ============================================================
|
|
# Python (cms_backend, cms_asset_manager, cms_workflow)
|
|
# ============================================================
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
.Python
|
|
*.egg
|
|
*.egg-info/
|
|
.eggs/
|
|
build/
|
|
dist/
|
|
develop-eggs/
|
|
downloads/
|
|
.installed.cfg
|
|
pip-log.txt
|
|
pip-wheel-metadata/
|
|
|
|
# Virtual environments
|
|
.venv/
|
|
venv/
|
|
env/
|
|
ENV/
|
|
.python-version
|
|
|
|
# Flask instance folder (may hold local config/secrets)
|
|
instance/
|
|
.webassets-cache
|
|
|
|
# Testing / typing / linting caches
|
|
.pytest_cache/
|
|
.cache/
|
|
.coverage
|
|
.coverage.*
|
|
htmlcov/
|
|
coverage.xml
|
|
nosetests.xml
|
|
.mypy_cache/
|
|
.dmypy.json
|
|
.ruff_cache/
|
|
.tox/
|
|
|
|
# Local upload/scratch dirs used by the backend
|
|
uploads/
|
|
tmp/
|
|
|
|
# ============================================================
|
|
# Node / React (cms_frontend_new, asset_manager_app_web_socket, dbase_manager)
|
|
# ============================================================
|
|
node_modules/
|
|
/build
|
|
build/
|
|
/dist
|
|
dist/
|
|
.pnp
|
|
.pnp.*
|
|
coverage/
|
|
.eslintcache
|
|
.stylelintcache
|
|
.npm
|
|
.yarn-integrity
|
|
.yarn/
|
|
*.tsbuildinfo
|
|
.parcel-cache/
|
|
.turbo/
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
pnpm-debug.log*
|
|
|
|
# React production build (deploy artifact only)
|
|
cms_frontend_new/build/
|
|
|
|
# ============================================================
|
|
# Flutter / Dart (planxo)
|
|
# ============================================================
|
|
# Dart / pub
|
|
.dart_tool/
|
|
.packages
|
|
.pub-cache/
|
|
.pub/
|
|
build/
|
|
.flutter-plugins
|
|
.flutter-plugins-dependencies
|
|
**/doc/api/
|
|
**/generated_plugin_registrant.*
|
|
**/GeneratedPluginRegistrant.*
|
|
# analyzer scratch dump
|
|
planxo/errors.txt
|
|
|
|
# Flutter — iOS
|
|
**/ios/Pods/
|
|
**/ios/.symlinks/
|
|
**/ios/Flutter/.last_build_id
|
|
**/ios/Flutter/App.framework
|
|
**/ios/Flutter/Flutter.framework
|
|
**/ios/Flutter/Flutter.podspec
|
|
**/ios/Flutter/Generated.xcconfig
|
|
**/ios/Flutter/ephemeral/
|
|
**/ios/Flutter/flutter_export_environment.sh
|
|
|
|
# Flutter — macOS
|
|
**/macos/Pods/
|
|
**/macos/Flutter/ephemeral/
|
|
**/macos/Flutter/Flutter-Generated.xcconfig
|
|
**/macos/Flutter/GeneratedPluginRegistrant.swift
|
|
|
|
# Flutter — Android
|
|
**/android/.gradle/
|
|
**/android/captures/
|
|
**/android/local.properties
|
|
**/android/key.properties
|
|
**/android/app/debug/
|
|
**/android/app/profile/
|
|
**/android/app/release/
|
|
**/.cxx/
|
|
|
|
# Flutter — Linux / Windows ephemeral build
|
|
**/linux/flutter/ephemeral/
|
|
**/windows/flutter/ephemeral/
|
|
|
|
# CocoaPods lockfile (generated)
|
|
**/Podfile.lock
|
|
|
|
# Xcode user/derived data
|
|
**/xcuserdata/
|
|
**/DerivedData/
|
|
*.moved-aside
|
|
*.pbxuser
|
|
*.mode1v3
|
|
*.mode2v3
|
|
*.perspectivev3
|
|
|
|
# Desktop sync app per-machine state (not source)
|
|
*.planxo_sync_meta.json
|
|
*.planxo_sync_settings.json
|
|
|
|
# ============================================================
|
|
# C / C++ build (in case the AutomizPDF SDK is added here)
|
|
# ============================================================
|
|
CMakeBuild/
|
|
CMakeCache.txt
|
|
CMakeFiles/
|
|
*.o
|
|
*.obj
|
|
*.so
|
|
*.dylib
|
|
*.a
|
|
|
|
# ============================================================
|
|
# Archives / large local artifacts
|
|
# ============================================================
|
|
*.zip
|
|
*.tar
|
|
*.tar.gz
|
|
*.7z
|