Document application modes (development/debug/production) Add global file drop handler, order column normalization, SPA hash fix Serve CDN assets via /_vendor/ URLs instead of merging into bundles Add production minification with license preservation Improve JSON formatting for debugging and production optimization Add CDN asset caching with CSS URL inlining for production builds Add three-mode system (development, debug, production) Update Manifest CLAUDE.md to reflect helper class architecture Refactor Manifest.php into helper classes for better organization Pre-manifest-refactor checkpoint: Add app_mode documentation 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
62 lines
1.1 KiB
Plaintext
Executable File
62 lines
1.1 KiB
Plaintext
Executable File
# /node_modules # We commit node_modules to ensure consistent dependencies
|
|
# /vendor # We commit vendor to ensure consistent dependencies
|
|
/public/hot
|
|
/public/storage
|
|
/public/css
|
|
/public/js
|
|
/public/build
|
|
/public/webfonts
|
|
# .env # Keeping in git for now
|
|
.env.backup
|
|
.env.production
|
|
.phpunit.result.cache
|
|
Homestead.json
|
|
Homestead.yaml
|
|
npm-debug.log
|
|
yarn-error.log
|
|
/.idea
|
|
# /.vscode # Keeping in git for shared settings
|
|
/.fleet
|
|
/.vapor
|
|
.DS_Store
|
|
._*
|
|
Thumbs.db
|
|
|
|
# Storage directory (except cdn-cache which is committed)
|
|
/storage/*
|
|
!/storage/rsx-build/
|
|
/storage/rsx-build/*
|
|
!/storage/rsx-build/cdn-cache/
|
|
|
|
# Supervisor files
|
|
supervisord.log*
|
|
supervisord.pid*
|
|
*.log
|
|
*.pid
|
|
|
|
# Local settings
|
|
**/claude/settings.local.json
|
|
**/.claude/settings.local.json
|
|
|
|
# RSX Framework
|
|
.rsx-manifest-cache
|
|
.migrating
|
|
._rsx_helper.php
|
|
_ide_helper.php
|
|
|
|
# Build artifacts
|
|
/build/cache/
|
|
/build/temp/
|
|
/build/
|
|
/ace_reference/
|
|
.php-cs-fixer.cache
|
|
runonsave_debug.log
|
|
test-*
|
|
__pycache__
|
|
|
|
# Environment configuration (use .env.dist as template)
|
|
.env
|
|
docs.dev/*/node_modules/
|
|
docs.dev/ace_reference/vendor/
|
|
.rspade_last_commit_for_publish
|