スキル一覧に戻る
wheels-dev

wheels-deployment

by wheels-dev

wheels-deploymentは、other分野における実用的なスキルです。複雑な課題への対応力を強化し、業務効率と成果の質を改善します。

200🍴 106📅 2026年1月23日
GitHubで見るManusで実行

SKILL.md


name: Wheels Deployment description: 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.

Wheels Deployment

Production Configuration

config/settings.cfm (Production)

<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

スコア

総合スコア

75/100

リポジトリの品質指標に基づく評価

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

+10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

+5
最近の活動

1ヶ月以内に更新

+10
フォーク

10回以上フォークされている

+5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

+5

レビュー

💬

レビュー機能は近日公開予定です