# Wheels Deployment

> Configure Wheels applications for production deployment with security hardening, performance optimization, and environment-specific settings. Use when preparing for production, configuring servers, or hardening security. Use when this capability is needed.

- Skill: `tomevault-io/wheels-deployment` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add tomevault-io/wheels-deployment`
- Raw SKILL.md: https://api.skillmd.com/api/skills/tomevault-io/wheels-deployment/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Security
- Author: tomevault-io (https://skillmd.com/u/tomevault-io)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/tomevault-io/wheels-deployment

---


# Wheels Deployment

## Production Configuration

### config/settings.cfm (Production)

```cfm
<cfif get("environment") == "production">
    <cfscript>
        // Error handling
        set(showDebugInformation=false);
        set(showErrorInformation=false);
        set(sendEmailOnError=true);
        set(errorEmailAddress="admin@example.com");

        // Performance
        set(cacheActions=true);
        set(cachePages=true);
        set(cachePartials=true);
        set(cacheQueries=true);

        // Security
        set(csrfProtection=true);
        set(obfuscateUrls=true);

        // Database
        set(autocommit=false);
    </cfscript>
</cfif>
```

## Security Checklist

- [ ] CSRF protection enabled
- [ ] showDebugInformation = false
- [ ] showErrorInformation = false
- [ ] Strong database passwords
- [ ] HTTPS enabled
- [ ] SQL injection prevention
- [ ] XSS protection
- [ ] Secure session configuration

## Performance Checklist

- [ ] Enable all caching
- [ ] Optimize database indexes
- [ ] Use eager loading (include)
- [ ] Enable GZIP compression
- [ ] Minify CSS/JS
- [ ] Use CDN for assets
- [ ] Database connection pooling

---

**Generated by:** Wheels Deployment Skill v1.0

---
> Converted and distributed by [TomeVault](https://tomevault.io/claim/wheels-dev) — claim your Tome and manage your conversions.
<!-- tomevault:4.0:skill_md:2026-04-11 -->

