- 134-tool registry with programmatic SEO (unique titles/H1/descriptions, JSON-LD graphs, sitemap index, canonical 301 enforcement via required filter) - DB-backed job queue (SKIP LOCKED) with drivers: Ffmpeg, Images (GD), Pdf (qpdf/gs/poppler), Youtube (thumbnails), Qr (server-side PNG) - Security: SSRF guard, MIME validation, rate limits, API-key auth, bcrypt admin login, security headers - Admin panel: dashboard, tools/categories/guides CRUD, SEO audit, analytics, job inspector with retry, system health, feature flags - Docker deployment (nginx + web/api FPM pools + scalable workers), PHPUnit suite (19 tests / 1139 assertions), PWA manifest + service worker
139 lines
2.1 KiB
Plaintext
139 lines
2.1 KiB
Plaintext
#-------------------------
|
|
# Operating Specific Junk Files
|
|
#-------------------------
|
|
|
|
# OS X
|
|
.DS_Store
|
|
.AppleDouble
|
|
.LSOverride
|
|
|
|
# OS X Thumbnails
|
|
._*
|
|
|
|
# Windows image file caches
|
|
Thumbs.db
|
|
ehthumbs.db
|
|
Desktop.ini
|
|
|
|
# Recycle Bin used on file shares
|
|
$RECYCLE.BIN/
|
|
|
|
# Windows Installer files
|
|
*.cab
|
|
*.msi
|
|
*.msm
|
|
*.msp
|
|
|
|
# Windows shortcuts
|
|
*.lnk
|
|
|
|
# Linux
|
|
*~
|
|
|
|
# KDE directory preferences
|
|
.directory
|
|
|
|
# Linux trash folder which might appear on any partition or disk
|
|
.Trash-*
|
|
|
|
#-------------------------
|
|
# Environment Files
|
|
#-------------------------
|
|
# These should never be under version control,
|
|
# as it poses a security risk.
|
|
.env
|
|
.vagrant
|
|
Vagrantfile
|
|
|
|
#-------------------------
|
|
# Temporary Files
|
|
#-------------------------
|
|
/writable/cache/*
|
|
!/writable/cache/index.html
|
|
|
|
/writable/logs/*
|
|
!/writable/logs/index.html
|
|
|
|
/writable/session/*
|
|
!/writable/session/index.html
|
|
|
|
/writable/uploads/*
|
|
!/writable/uploads/index.html
|
|
|
|
/writable/debugbar/*
|
|
!/writable/debugbar/index.html
|
|
|
|
php_errors.log
|
|
|
|
#-------------------------
|
|
# User Guide Temp Files
|
|
#-------------------------
|
|
/user_guide_src/build/*
|
|
/user_guide_src/cilexer/build/*
|
|
/user_guide_src/cilexer/dist/*
|
|
/user_guide_src/cilexer/pycilexer.egg-info/*
|
|
|
|
#-------------------------
|
|
# Test Files
|
|
#-------------------------
|
|
/tests/coverage*
|
|
|
|
# Don't save phpunit under version control.
|
|
/phpunit
|
|
|
|
#-------------------------
|
|
# Composer
|
|
#-------------------------
|
|
vendor/
|
|
|
|
#-------------------------
|
|
# IDE / Development Files
|
|
#-------------------------
|
|
|
|
# Modules Testing
|
|
_modules/*
|
|
|
|
# phpenv local config
|
|
.php-version
|
|
|
|
# Jetbrains editors (PHPStorm, etc)
|
|
.idea/
|
|
*.iml
|
|
|
|
# NetBeans
|
|
/nbproject/
|
|
/build/
|
|
/nbbuild/
|
|
/dist/
|
|
/nbdist/
|
|
/nbactions.xml
|
|
/nb-configuration.xml
|
|
/.nb-gradle/
|
|
|
|
# Sublime Text
|
|
*.tmlanguage.cache
|
|
*.tmPreferences.cache
|
|
*.stTheme.cache
|
|
*.sublime-workspace
|
|
*.sublime-project
|
|
.phpintel
|
|
/api/
|
|
|
|
# Visual Studio Code
|
|
.vscode/
|
|
|
|
/results/
|
|
/phpunit.xml
|
|
|
|
# -------------------------
|
|
# Toolvana runtime data
|
|
# -------------------------
|
|
.env.docker
|
|
/writable/media/*
|
|
/writable/incoming/*
|
|
/writable/og/*
|
|
!/writable/media/index.html
|
|
!/writable/incoming/index.html
|
|
!/writable/og/index.html
|
|
/.phpunit.cache/
|