Wheels Deployment
OfficialSecure and optimize Wheels for production.
Software Engineering#performance#deployment#security#production#configuration#web application#CFWheels
Authorwheels-dev
Version1.0.0
Installs0
System Documentation
What problem does it solve?
This Skill guides users through the critical process of configuring CFWheels applications for production deployment, addressing essential security hardening and performance optimization concerns to ensure a robust, efficient, and secure live environment.
Core Features & Use Cases
- Production Configuration: Provides clear examples for error handling, caching, and database settings tailored for production.
- Security Checklist: Ensures CSRF protection, debug information suppression, strong passwords, and HTTPS are in place.
- Performance Checklist: Guides on enabling caching, optimizing database indexes, and using eager loading for faster applications.
- Use Case: Before launching your Wheels application, use this skill to systematically review and apply production-ready settings. Ensure all debug information is off, caching is enabled, and essential security measures like CSRF protection are active, preventing common production pitfalls and vulnerabilities.
Quick Start
In config/settings.cfm, for production environment:
<cfif get("environment") == "production"> <cfscript> set(showDebugInformation=false); set(cacheActions=true); set(csrfProtection=true); </cfscript> </cfif>
Dependency Matrix
Required Modules
None requiredComponents
Standard package💻 Claude Code Installation
Recommended: Let Claude install automatically. Simply copy and paste the text below to Claude Code.
Please help me install this Skill: Name: Wheels Deployment Download link: https://github.com/wheels-dev/wheels/archive/main.zip#wheels-deployment Please download this .zip file, extract it, and install it in the .claude/skills/ directory.