├── .ai ├── CLAUDE.md ├── CONTRIBUTION_SUMMARY.md ├── MCP-ENFORCEMENT.md ├── QUICK_REFERENCE.md ├── README.md ├── cfml │ ├── README.md │ ├── advanced │ │ └── closures.md │ ├── best-practices │ │ ├── modern-patterns.md │ │ └── performance.md │ ├── components │ │ ├── component-basics.md │ │ ├── functions.md │ │ └── properties.md │ ├── control-flow │ │ ├── conditionals.md │ │ ├── exception-handling.md │ │ └── loops.md │ ├── data-types │ │ ├── arrays │ │ │ ├── array-creation.md │ │ │ ├── array-iteration.md │ │ │ └── array-methods.md │ │ ├── numbers │ │ │ └── numeric-basics.md │ │ ├── scopes │ │ │ └── variables-scope.md │ │ ├── strings │ │ │ ├── string-functions.md │ │ │ ├── string-interpolation.md │ │ │ └── string-literals.md │ │ ├── structures │ │ │ ├── struct-creation.md │ │ │ └── structure-basics.md │ │ ├── variable-scopes.md │ │ └── variables.md │ ├── database │ │ └── query-basics.md │ └── syntax │ │ ├── basic-syntax.md │ │ ├── cfscript-vs-tags.md │ │ ├── comments.md │ │ └── hash-escaping.md └── wheels │ ├── README.md │ ├── cli │ └── generators │ │ ├── controllers.md │ │ ├── migrations.md │ │ ├── models.md │ │ └── scaffolds.md │ ├── communication │ └── email-sending.md │ ├── configuration │ ├── application.md │ ├── best-practices.md │ ├── environments.md │ ├── framework-settings.md │ ├── overview.md │ ├── routing.md │ ├── security.md │ └── troubleshooting.md │ ├── controllers │ ├── api.md │ ├── architecture.md │ ├── filters.md │ ├── filters │ │ ├── authentication.md │ │ ├── authorization.md │ │ └── before-after.md │ ├── http-detection.md │ ├── model-interactions.md │ ├── params │ │ └── verification.md │ ├── rendering.md │ ├── rendering │ │ ├── json.md │ │ ├── redirects.md │ │ └── views.md │ ├── security.md │ └── testing.md │ ├── core-concepts │ ├── mvc-architecture │ │ ├── controllers.md │ │ ├── conventions.md │ │ ├── models.md │ │ └── views.md │ ├── orm │ │ ├── mapping-basics.md │ │ ├── primary-keys.md │ │ ├── properties.md │ │ └── tableless-models.md │ ├── rails-comparison.md │ └── routing │ │ ├── basics.md │ │ ├── http-methods.md │ │ ├── patterns.md │ │ └── resources.md │ ├── database │ ├── associations │ │ ├── belongs-to.md │ │ ├── has-many.md │ │ ├── has-one.md │ │ └── nested-properties.md │ ├── migrations │ │ ├── advanced-operations.md │ │ ├── best-practices.md │ │ ├── column-types.md │ │ ├── creating-migrations.md │ │ ├── date-function-issues.md │ │ ├── rollback.md │ │ └── running-migrations.md │ ├── queries │ │ ├── creating-records.md │ │ ├── deleting-records.md │ │ ├── finding-records.md │ │ └── updating-records.md │ └── validations │ │ ├── custom.md │ │ ├── format.md │ │ ├── presence.md │ │ └── uniqueness.md │ ├── files │ └── downloads.md │ ├── integration │ └── modern-frontend-stack.md │ ├── models │ ├── advanced-features.md │ ├── advanced-patterns.md │ ├── architecture.md │ ├── associations.md │ ├── best-practices.md │ ├── callbacks.md │ ├── methods-reference.md │ ├── performance.md │ ├── testing.md │ ├── user-authentication.md │ └── validations.md │ ├── patterns │ ├── authentication.md │ ├── crud.md │ └── validation-templates.md │ ├── security │ ├── csrf-protection.md │ └── https-detection.md │ ├── snippets │ ├── controller-snippets.md │ └── model-snippets.md │ ├── testing │ └── browser-automation-patterns.md │ ├── troubleshooting │ ├── common-errors.md │ └── form-helper-errors.md │ ├── views │ ├── advanced-patterns.md │ ├── architecture.md │ ├── best-practices.md │ ├── data-handling.md │ ├── forms.md │ ├── helpers.md │ ├── helpers │ │ ├── custom.md │ │ ├── dates.md │ │ ├── forms.md │ │ └── links.md │ ├── layouts.md │ ├── layouts │ │ ├── content-for.md │ │ ├── partials.md │ │ └── structure.md │ ├── partials.md │ ├── query-association-patterns.md │ └── testing.md │ └── workflows │ ├── documentation-loading-strategy.md │ ├── enhanced-mcp-develop-specification.md │ ├── intelligent-analysis-planning-engine.md │ ├── pre-implementation.md │ └── template-driven-implementation-patterns.md ├── .cfformat.json ├── .claude ├── .devcontainer │ └── devcontainer.json ├── commands │ └── wheels_execute.md ├── settings.local.json └── skills │ ├── README.md │ ├── SKILLS-QUICK-START.md │ ├── wheels-anti-pattern-detector │ └── SKILL.md │ ├── wheels-api-generator │ └── SKILL.md │ ├── wheels-auth-generator │ └── SKILL.md │ ├── wheels-controller-generator │ └── SKILL.md │ ├── wheels-debugging │ └── SKILL.md │ ├── wheels-deployment │ └── SKILL.md │ ├── wheels-documentation-generator │ └── SKILL.md │ ├── wheels-email-generator │ └── SKILL.md │ ├── wheels-migration-generator │ └── SKILL.md │ ├── wheels-model-generator │ ├── SKILL.md │ └── templates │ │ ├── basic-model.cfc │ │ └── user-authentication-model.cfc │ ├── wheels-plugin-generator │ └── SKILL.md │ ├── wheels-refactoring │ └── SKILL.md │ ├── wheels-routing-generator │ └── SKILL.md │ ├── wheels-test-generator │ └── SKILL.md │ └── wheels-view-generator │ └── SKILL.md ├── .editorconfig ├── .env ├── .gitbook.yaml ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── actions │ └── publish_forgebox_package │ │ ├── Dockerfile │ │ ├── action.yml │ │ └── entrypoint.sh ├── slack.yml └── workflows │ ├── build-docs.yml.hold │ ├── docs-sync.yml │ ├── pr.yml │ ├── release-candidate.yml │ ├── release.yml │ ├── snapshot.yml │ ├── tests.yml │ ├── tests.yml.keep │ └── version-bump.yml ├── .gitignore ├── .opencode └── command │ └── wheels_execute.md ├── .vscode ├── launch.json ├── wheels-test.code-snippets └── wheels.code-snippets ├── AGENTS.md ├── CHANGELOG.md ├── CLAUDE-SKILLS-ANALYSIS.md ├── CLAUDE.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── MONOREPO.md ├── README.md ├── RELEASE-CANDIDATE.md ├── SKILLS-IMPLEMENTATION-SUMMARY.md ├── cli ├── .gitignore ├── CHANGELOG ├── CLAUDE.md ├── LICENSE ├── PR-INSTRUCTIONS.md ├── README.md ├── WHEELS-CLI-ROADMAP.md ├── docs │ └── CONFIG-COMMANDS.md ├── src │ ├── ModuleConfig.cfc │ ├── commands │ │ └── wheels │ │ │ ├── about.cfc │ │ │ ├── analyze │ │ │ ├── code.cfc │ │ │ ├── performance.cfc │ │ │ └── security.cfc │ │ │ ├── assets │ │ │ ├── clean.cfc │ │ │ ├── clobber.cfc │ │ │ └── precompile.cfc │ │ │ ├── base.cfc │ │ │ ├── benchmark.cfc │ │ │ ├── cache │ │ │ └── clear.cfc │ │ │ ├── cleanup │ │ │ ├── logs.cfc │ │ │ ├── sessions.cfc │ │ │ └── tmp.cfc │ │ │ ├── config │ │ │ ├── check.cfc │ │ │ ├── diff.cfc │ │ │ ├── dump.cfc │ │ │ ├── env.cfc │ │ │ ├── list.cfc │ │ │ └── set.cfc │ │ │ ├── db │ │ │ ├── create.cfc │ │ │ ├── drop.cfc │ │ │ ├── dump.cfc │ │ │ ├── reset.cfc │ │ │ ├── restore.cfc │ │ │ ├── rollback.cfc │ │ │ ├── schema.cfc │ │ │ ├── seed.cfc │ │ │ ├── setup.cfc │ │ │ ├── shell.cfc │ │ │ ├── status.cfc │ │ │ └── version.cfc │ │ │ ├── dbmigrate │ │ │ ├── create │ │ │ │ ├── blank.cfc │ │ │ │ ├── column.cfc │ │ │ │ └── table.cfc │ │ │ ├── down.cfc │ │ │ ├── exec.cfc │ │ │ ├── info.cfc │ │ │ ├── latest.cfc │ │ │ ├── remove │ │ │ │ └── table.cfc │ │ │ ├── reset.cfc │ │ │ └── up.cfc │ │ │ ├── deploy.cfc │ │ │ ├── deploy │ │ │ ├── audit.cfc │ │ │ ├── base.cfc │ │ │ ├── exec.cfc │ │ │ ├── hooks.cfc │ │ │ ├── init.cfc │ │ │ ├── lock.cfc │ │ │ ├── logs.cfc │ │ │ ├── proxy.cfc │ │ │ ├── push.cfc │ │ │ ├── rollback.cfc │ │ │ ├── secrets.cfc │ │ │ ├── setup.cfc │ │ │ ├── status.cfc │ │ │ └── stop.cfc │ │ │ ├── deps.cfc │ │ │ ├── deptree.cfc │ │ │ ├── destroy.cfc │ │ │ ├── docker │ │ │ ├── deploy.cfc │ │ │ ├── deploy.cfc.bak │ │ │ ├── init.cfc │ │ │ └── init.cfc.bak │ │ │ ├── docs │ │ │ ├── generate.cfc │ │ │ └── serve.cfc │ │ │ ├── doctor.cfc │ │ │ ├── env │ │ │ ├── list.cfc │ │ │ ├── merge.cfc │ │ │ ├── set.cfc │ │ │ ├── setup.cfc │ │ │ ├── show.cfc │ │ │ ├── switch.cfc │ │ │ └── validate.cfc │ │ │ ├── environment.cfc │ │ │ ├── generate │ │ │ ├── api-resource.cfc │ │ │ ├── app-wizard.cfc │ │ │ ├── app.cfc │ │ │ ├── controller.cfc │ │ │ ├── frontend.cfc │ │ │ ├── frontend.cfc.bak │ │ │ ├── helper.cfc │ │ │ ├── migration.cfc │ │ │ ├── model.cfc │ │ │ ├── property.cfc │ │ │ ├── route.cfc │ │ │ ├── scaffold.cfc │ │ │ ├── service.cfc │ │ │ ├── snippets.cfc │ │ │ ├── test.cfc │ │ │ └── view.cfc │ │ │ ├── get │ │ │ ├── environment.cfc │ │ │ └── settings.cfc │ │ │ ├── info.cfc │ │ │ ├── init.cfc │ │ │ ├── log │ │ │ ├── clear.cfc │ │ │ └── tail.cfc │ │ │ ├── maintenance │ │ │ ├── off.cfc │ │ │ └── on.cfc │ │ │ ├── mcp │ │ │ ├── remove.cfc │ │ │ ├── setup.cfc │ │ │ ├── status.cfc │ │ │ ├── test.cfc │ │ │ └── update.cfc │ │ │ ├── notes.cfc │ │ │ ├── optimize.cfc │ │ │ ├── optimize │ │ │ └── performance.cfc │ │ │ ├── plugins │ │ │ ├── info.cfc │ │ │ ├── init.cfc │ │ │ ├── install.cfc │ │ │ ├── list.cfc │ │ │ ├── outdated.cfc │ │ │ ├── remove.cfc │ │ │ ├── search.cfc │ │ │ ├── update.cfc │ │ │ └── updateAll.cfc │ │ │ ├── profile.cfc │ │ │ ├── reload.cfc │ │ │ ├── routes.cfc │ │ │ ├── routes │ │ │ └── match.cfc │ │ │ ├── secret.cfc │ │ │ ├── security │ │ │ └── scan.cfc │ │ │ ├── server.cfc │ │ │ ├── server │ │ │ ├── log.cfc │ │ │ ├── open.cfc │ │ │ ├── restart.cfc │ │ │ ├── start.cfc │ │ │ ├── status.cfc │ │ │ └── stop.cfc │ │ │ ├── set.cfc │ │ │ ├── set │ │ │ ├── datasource.cfc │ │ │ ├── environment.cfc │ │ │ └── settings.cfc │ │ │ ├── stats.cfc │ │ │ ├── test │ │ │ ├── all.cfc │ │ │ ├── coverage.cfc │ │ │ ├── integration.cfc │ │ │ ├── run.cfc │ │ │ ├── unit.cfc │ │ │ └── watch.cfc │ │ │ ├── upgrade.cfc │ │ │ ├── version.cfc │ │ │ └── watch.cfc │ ├── interceptors │ │ └── postInstall.cfc │ ├── models │ │ ├── AnalysisService.cfc │ │ ├── BaseCommand.cfc │ │ ├── CodeGenerationService.cfc │ │ ├── DetailOutputService.cfc │ │ ├── EnvironmentService.cfc │ │ ├── MCPService.cfc │ │ ├── MigrationService.cfc │ │ ├── OptimizationService.cfc │ │ ├── PluginService.cfc │ │ ├── ScaffoldService.cfc │ │ ├── SecurityService.cfc │ │ ├── SharedParameters.cfc │ │ ├── TemplateService.cfc │ │ ├── TestMigrationService.cfc │ │ ├── TestService.cfc │ │ └── helpers.cfc │ ├── recipes │ │ └── config-migration.boxr │ └── templates │ │ ├── ActionContent.txt │ │ ├── ApiControllerContent.txt │ │ ├── BoxJSON.txt │ │ ├── CRUDContent.txt │ │ ├── ConfigAppContent.txt │ │ ├── ConfigDataSourceH2Content.txt │ │ ├── ConfigReloadPasswordContent.txt │ │ ├── ConfigRoutes.txt │ │ ├── ControllerContent.txt │ │ ├── DBMigrate.txt │ │ ├── McpConfig.json │ │ ├── ModelContent.txt │ │ ├── OpenCodeConfig.json │ │ ├── ServerJSON.txt │ │ ├── ViewContent.txt │ │ ├── WheelsBoxJSON.txt │ │ ├── bootstrap │ │ ├── layout.cfm │ │ └── settings.cfm │ │ ├── crud │ │ ├── _form.txt │ │ ├── edit.txt │ │ ├── index.txt │ │ ├── new.txt │ │ └── show.txt │ │ ├── dbmigrate │ │ ├── announce.txt │ │ ├── blank.txt │ │ ├── change-column.txt │ │ ├── change-table.txt │ │ ├── create-column.txt │ │ ├── create-index.txt │ │ ├── create-record.txt │ │ ├── create-table.txt │ │ ├── execute.txt │ │ ├── remove-column.txt │ │ ├── remove-index.txt │ │ ├── remove-record.txt │ │ ├── remove-table.txt │ │ ├── rename-column.txt │ │ ├── rename-table.txt │ │ └── update-record.txt │ │ └── tests │ │ ├── controller.txt │ │ ├── model.txt │ │ └── view.txt └── tests │ └── specs │ └── commands │ └── ConfigCommandsTest.cfc ├── compose.yml ├── context7.json ├── core ├── box.json ├── src │ └── wheels │ │ ├── Controller.cfc │ │ ├── Dispatch.cfc │ │ ├── Global.cfc │ │ ├── Job.cfc │ │ ├── Mapper.cfc │ │ ├── Migrator.cfc │ │ ├── Model.cfc │ │ ├── Plugins.cfc │ │ ├── Public.cfc │ │ ├── Test.cfc │ │ ├── Testbox.cfc │ │ ├── Wirebox.cfc │ │ ├── box.json │ │ ├── controller │ │ ├── caching.cfc │ │ ├── csrf.cfc │ │ ├── filters.cfc │ │ ├── flash.cfc │ │ ├── layouts.cfc │ │ ├── miscellaneous.cfc │ │ ├── processing.cfc │ │ ├── provides.cfc │ │ ├── redirection.cfc │ │ ├── rendering.cfc │ │ └── verifies.cfc │ │ ├── controllers │ │ └── Tests.cfc │ │ ├── events │ │ ├── EventMethods.cfc │ │ ├── onapplicationstart.cfc │ │ ├── onerror │ │ │ ├── cfmlerror.cfm │ │ │ └── wheelserror.cfm │ │ └── onrequestend │ │ │ └── debug.cfm │ │ ├── helpers │ │ └── DatabaseShellHelper.cfc │ │ ├── mapper │ │ ├── mapping.cfc │ │ ├── matching.cfc │ │ ├── resources.cfc │ │ └── scoping.cfc │ │ ├── migrator │ │ ├── Base.cfc │ │ ├── ColumnDefinition.cfc │ │ ├── ForeignKeyDefinition.cfc │ │ ├── Migration.cfc │ │ ├── TableDefinition.cfc │ │ ├── ViewDefinition.cfc │ │ ├── adapters │ │ │ ├── Abstract.cfc │ │ │ ├── H2.cfc │ │ │ ├── MicrosoftSQLServer.cfc │ │ │ ├── MySQL.cfc │ │ │ ├── Oracle.cfc │ │ │ ├── PostgreSQL.cfc │ │ │ └── SQLite.cfc │ │ └── templates │ │ │ ├── announce.cfc │ │ │ ├── blank.cfc │ │ │ ├── change-column.cfc │ │ │ ├── change-table.cfc │ │ │ ├── create-column.cfc │ │ │ ├── create-index.cfc │ │ │ ├── create-record.cfc │ │ │ ├── create-table.cfc │ │ │ ├── execute.cfc │ │ │ ├── remove-column.cfc │ │ │ ├── remove-index.cfc │ │ │ ├── remove-record.cfc │ │ │ ├── remove-table.cfc │ │ │ ├── rename-column.cfc │ │ │ ├── rename-table.cfc │ │ │ └── update-record.cfc │ │ ├── model │ │ ├── adapters │ │ │ ├── Base.cfc │ │ │ ├── H2.cfc │ │ │ ├── MySQL.cfc │ │ │ ├── Oracle.cfc │ │ │ ├── PostgreSQL.cfc │ │ │ ├── SQLServer.cfc │ │ │ └── SQLite.cfc │ │ ├── associations.cfc │ │ ├── calculations.cfc │ │ ├── callbacks.cfc │ │ ├── create.cfc │ │ ├── delete.cfc │ │ ├── errors.cfc │ │ ├── miscellaneous.cfc │ │ ├── nestedproperties.cfc │ │ ├── onmissingmethod.cfc │ │ ├── properties.cfc │ │ ├── read.cfc │ │ ├── serialize.cfc │ │ ├── sql.cfc │ │ ├── transactions.cfc │ │ ├── update.cfc │ │ └── validations.cfc │ │ ├── public │ │ ├── README.md │ │ ├── assets │ │ │ ├── .gitignore │ │ │ ├── css │ │ │ │ ├── fonts.css │ │ │ │ ├── highlight_default.min.css │ │ │ │ ├── semantic.min.css │ │ │ │ └── woff_files │ │ │ │ │ ├── S6u8w4BMUTPHjxsAUi-qJCY.woff2 │ │ │ │ │ ├── S6u8w4BMUTPHjxsAXC-q.woff2 │ │ │ │ │ ├── S6u9w4BMUTPHh6UVSwaPGR_p.woff2 │ │ │ │ │ ├── S6u9w4BMUTPHh6UVSwiPGQ.woff2 │ │ │ │ │ ├── S6u_w4BMUTPHjxsI5wq_FQft1dw.woff2 │ │ │ │ │ ├── S6u_w4BMUTPHjxsI5wq_Gwft.woff2 │ │ │ │ │ ├── S6uyw4BMUTPHjx4wXg.woff2 │ │ │ │ │ ├── S6uyw4BMUTPHjxAwXjeu.woff2 │ │ │ │ │ ├── icons.woff │ │ │ │ │ └── icons.woff2 │ │ │ ├── js │ │ │ │ ├── highlight.min.js │ │ │ │ ├── jquery.min.js │ │ │ │ ├── marked.min.js │ │ │ │ └── semantic.min.js │ │ │ └── semantic │ │ │ │ └── dist │ │ │ │ ├── semantic.min.css │ │ │ │ └── semantic.min.js │ │ ├── docs │ │ │ ├── core.cfm │ │ │ ├── guides.cfm │ │ │ ├── layouts │ │ │ │ ├── guides-plain.cfm │ │ │ │ ├── guides.cfm │ │ │ │ ├── html.cfm │ │ │ │ └── json.cfm │ │ │ └── reference │ │ │ │ ├── controller │ │ │ │ ├── addformat.txt │ │ │ │ ├── authenticitytokenfield.txt │ │ │ │ ├── autolink.txt │ │ │ │ ├── buttontag.txt │ │ │ │ ├── buttonto.txt │ │ │ │ ├── caches.txt │ │ │ │ ├── capitalize.txt │ │ │ │ ├── checkbox.txt │ │ │ │ ├── checkboxtag.txt │ │ │ │ ├── columndataforproperty.txt │ │ │ │ ├── columnforproperty.txt │ │ │ │ ├── columnnames.txt │ │ │ │ ├── columns.txt │ │ │ │ ├── compareto.txt │ │ │ │ ├── contentfor.txt │ │ │ │ ├── contentforlayout.txt │ │ │ │ ├── controller.txt │ │ │ │ ├── csrfmetatags.txt │ │ │ │ ├── cycle.txt │ │ │ │ ├── dateselect.txt │ │ │ │ ├── dateselecttags.txt │ │ │ │ ├── datetimeselect.txt │ │ │ │ ├── datetimeselecttags.txt │ │ │ │ ├── dayselecttag.txt │ │ │ │ ├── deobfuscateparam.txt │ │ │ │ ├── distanceoftimeinwords.txt │ │ │ │ ├── endformtag.txt │ │ │ │ ├── excerpt.txt │ │ │ │ ├── filefield.txt │ │ │ │ ├── filefieldtag.txt │ │ │ │ ├── filterchain.txt │ │ │ │ ├── filters.txt │ │ │ │ ├── flash.txt │ │ │ │ ├── flashclear.txt │ │ │ │ ├── flashcount.txt │ │ │ │ ├── flashdelete.txt │ │ │ │ ├── flashinsert.txt │ │ │ │ ├── flashisempty.txt │ │ │ │ ├── flashkeep.txt │ │ │ │ ├── flashkeyexists.txt │ │ │ │ ├── flashmessages.txt │ │ │ │ ├── get.txt │ │ │ │ ├── hasmanycheckbox.txt │ │ │ │ ├── hasmanyradiobutton.txt │ │ │ │ ├── hiddenfield.txt │ │ │ │ ├── hiddenfieldtag.txt │ │ │ │ ├── highlight.txt │ │ │ │ ├── hourselecttag.txt │ │ │ │ ├── humanize.txt │ │ │ │ ├── hyphenize.txt │ │ │ │ ├── imagetag.txt │ │ │ │ ├── includecontent.txt │ │ │ │ ├── includedinobject.txt │ │ │ │ ├── includelayout.txt │ │ │ │ ├── includepartial.txt │ │ │ │ ├── isajax.txt │ │ │ │ ├── isget.txt │ │ │ │ ├── ispost.txt │ │ │ │ ├── issecure.txt │ │ │ │ ├── javascriptincludetag.txt │ │ │ │ ├── linkto.txt │ │ │ │ ├── mailto.txt │ │ │ │ ├── mimetypes.txt │ │ │ │ ├── minuteselecttag.txt │ │ │ │ ├── model.txt │ │ │ │ ├── monthselecttag.txt │ │ │ │ ├── obfuscateparam.txt │ │ │ │ ├── onlyprovides.txt │ │ │ │ ├── pagination.txt │ │ │ │ ├── paginationlinks.txt │ │ │ │ ├── passwordfield.txt │ │ │ │ ├── passwordfieldtag.txt │ │ │ │ ├── pluginnames.txt │ │ │ │ ├── pluralize.txt │ │ │ │ ├── provides.txt │ │ │ │ ├── radiobutton.txt │ │ │ │ ├── radiobuttontag.txt │ │ │ │ ├── redirectto.txt │ │ │ │ ├── rendernothing.txt │ │ │ │ ├── renderpartial.txt │ │ │ │ ├── rendertext.txt │ │ │ │ ├── renderview.txt │ │ │ │ ├── renderwith.txt │ │ │ │ ├── resetcycle.txt │ │ │ │ ├── response.txt │ │ │ │ ├── secondselecttag.txt │ │ │ │ ├── select.txt │ │ │ │ ├── selecttag.txt │ │ │ │ ├── sendemail.txt │ │ │ │ ├── sendfile.txt │ │ │ │ ├── set.txt │ │ │ │ ├── setfilterchain.txt │ │ │ │ ├── setpagination.txt │ │ │ │ ├── setresponse.txt │ │ │ │ ├── setverificationchain.txt │ │ │ │ ├── simpleformat.txt │ │ │ │ ├── singularize.txt │ │ │ │ ├── startformtag.txt │ │ │ │ ├── striplinks.txt │ │ │ │ ├── striptags.txt │ │ │ │ ├── stylesheetlinktag.txt │ │ │ │ ├── submittag.txt │ │ │ │ ├── textarea.txt │ │ │ │ ├── textareatag.txt │ │ │ │ ├── textfield.txt │ │ │ │ ├── textfieldtag.txt │ │ │ │ ├── timeagoinwords.txt │ │ │ │ ├── timeselect.txt │ │ │ │ ├── timeselecttags.txt │ │ │ │ ├── timeuntilinwords.txt │ │ │ │ ├── titleize.txt │ │ │ │ ├── truncate.txt │ │ │ │ ├── urlfor.txt │ │ │ │ ├── useslayout.txt │ │ │ │ ├── verificationchain.txt │ │ │ │ ├── verifies.txt │ │ │ │ ├── wordtruncate.txt │ │ │ │ └── yearselecttag.txt │ │ │ │ ├── deprecated │ │ │ │ └── findorcreateby[property].txt │ │ │ │ ├── mapper │ │ │ │ ├── collection.txt │ │ │ │ ├── delete.txt │ │ │ │ ├── end.txt │ │ │ │ ├── get.txt │ │ │ │ ├── mapper.txt │ │ │ │ ├── member.txt │ │ │ │ ├── namespace.txt │ │ │ │ ├── package.txt │ │ │ │ ├── patch.txt │ │ │ │ ├── post.txt │ │ │ │ ├── put.txt │ │ │ │ ├── resource.txt │ │ │ │ ├── resources.txt │ │ │ │ ├── root.txt │ │ │ │ ├── scope.txt │ │ │ │ └── wildcard.txt │ │ │ │ ├── migration │ │ │ │ ├── addcolumn.txt │ │ │ │ ├── addindex.txt │ │ │ │ ├── addrecord.txt │ │ │ │ ├── changecolumn.txt │ │ │ │ ├── changetable.txt │ │ │ │ ├── createtable.txt │ │ │ │ ├── down.txt │ │ │ │ ├── removeindex.txt │ │ │ │ └── up.txt │ │ │ │ ├── migrator │ │ │ │ ├── createmigration.txt │ │ │ │ ├── getavailablemigrations.txt │ │ │ │ ├── getcurrentmigrationversion.txt │ │ │ │ └── migrateto.txt │ │ │ │ └── model │ │ │ │ ├── accessibleproperties.txt │ │ │ │ ├── adderror.txt │ │ │ │ ├── adderrortobase.txt │ │ │ │ ├── aftercreate.txt │ │ │ │ ├── afterdelete.txt │ │ │ │ ├── afterfind.txt │ │ │ │ ├── afterinitialization.txt │ │ │ │ ├── afternew.txt │ │ │ │ ├── aftersave.txt │ │ │ │ ├── afterupdate.txt │ │ │ │ ├── aftervalidation.txt │ │ │ │ ├── aftervalidationoncreate.txt │ │ │ │ ├── aftervalidationonupdate.txt │ │ │ │ ├── allchanges.txt │ │ │ │ ├── allerrors.txt │ │ │ │ ├── automaticvalidations.txt │ │ │ │ ├── average.txt │ │ │ │ ├── beforecreate.txt │ │ │ │ ├── beforedelete.txt │ │ │ │ ├── beforesave.txt │ │ │ │ ├── beforeupdate.txt │ │ │ │ ├── beforevalidation.txt │ │ │ │ ├── beforevalidationoncreate.txt │ │ │ │ ├── beforevalidationonupdate.txt │ │ │ │ ├── belongsto.txt │ │ │ │ ├── changedfrom.txt │ │ │ │ ├── changedproperties.txt │ │ │ │ ├── clearchangeinformation.txt │ │ │ │ ├── clearerrors.txt │ │ │ │ ├── count.txt │ │ │ │ ├── create.txt │ │ │ │ ├── datasource.txt │ │ │ │ ├── delete.txt │ │ │ │ ├── deleteall.txt │ │ │ │ ├── deletebykey.txt │ │ │ │ ├── deleteone.txt │ │ │ │ ├── errorcount.txt │ │ │ │ ├── errormessageon.txt │ │ │ │ ├── errormessagesfor.txt │ │ │ │ ├── errorson.txt │ │ │ │ ├── errorsonbase.txt │ │ │ │ ├── exists.txt │ │ │ │ ├── findall.txt │ │ │ │ ├── findallkeys.txt │ │ │ │ ├── findbykey.txt │ │ │ │ ├── findone.txt │ │ │ │ ├── gettablenameprefix.txt │ │ │ │ ├── haschanged.txt │ │ │ │ ├── haserrors.txt │ │ │ │ ├── hasmany.txt │ │ │ │ ├── hasone.txt │ │ │ │ ├── hasproperty.txt │ │ │ │ ├── ignoredcolumns.txt │ │ │ │ ├── invokewithtransaction.txt │ │ │ │ ├── isclass.txt │ │ │ │ ├── isinstance.txt │ │ │ │ ├── isnew.txt │ │ │ │ ├── key.txt │ │ │ │ ├── maximum.txt │ │ │ │ ├── minimum.txt │ │ │ │ ├── nestedproperties.txt │ │ │ │ ├── new.txt │ │ │ │ ├── primarykey.txt │ │ │ │ ├── primarykeys.txt │ │ │ │ ├── properties.txt │ │ │ │ ├── property.txt │ │ │ │ ├── propertyispresent.txt │ │ │ │ ├── propertynames.txt │ │ │ │ ├── protectedproperties.txt │ │ │ │ ├── reload.txt │ │ │ │ ├── save.txt │ │ │ │ ├── setprimarykey.txt │ │ │ │ ├── setprimarykeys.txt │ │ │ │ ├── setproperties.txt │ │ │ │ ├── settablenameprefix.txt │ │ │ │ ├── sum.txt │ │ │ │ ├── table.txt │ │ │ │ ├── tablename.txt │ │ │ │ ├── toggle.txt │ │ │ │ ├── update.txt │ │ │ │ ├── updateall.txt │ │ │ │ ├── updatebykey.txt │ │ │ │ ├── updateone.txt │ │ │ │ ├── updateproperty.txt │ │ │ │ ├── valid.txt │ │ │ │ ├── validate.txt │ │ │ │ ├── validateoncreate.txt │ │ │ │ ├── validateonupdate.txt │ │ │ │ ├── validatesconfirmationof.txt │ │ │ │ ├── validatesexclusionof.txt │ │ │ │ ├── validatesformatof.txt │ │ │ │ ├── validatesinclusionof.txt │ │ │ │ ├── validateslengthof.txt │ │ │ │ ├── validatesnumericalityof.txt │ │ │ │ ├── validatespresenceof.txt │ │ │ │ ├── validatesuniquenessof.txt │ │ │ │ └── validationtypeforproperty.txt │ │ ├── helpers.cfm │ │ ├── layout │ │ │ ├── _footer.cfm │ │ │ ├── _footer_simple.cfm │ │ │ ├── _header.cfm │ │ │ ├── _header_simple.cfm │ │ │ └── _navigation.cfm │ │ ├── mcp │ │ │ ├── McpServer.cfc │ │ │ └── SessionManager.cfc │ │ ├── migrator │ │ │ ├── _navigation.cfm │ │ │ ├── command.cfm │ │ │ ├── sql.cfm │ │ │ └── templating.cfm │ │ ├── routes.cfm │ │ ├── tests │ │ │ ├── _navigation.cfm │ │ │ ├── html.cfm │ │ │ ├── json.cfm │ │ │ ├── junit.cfm │ │ │ └── txt.cfm │ │ └── views │ │ │ ├── ai.cfm │ │ │ ├── api.cfm │ │ │ ├── cli.cfm │ │ │ ├── congratulations.cfm │ │ │ ├── docs.cfm │ │ │ ├── guides.cfm │ │ │ ├── info.cfm │ │ │ ├── mcp.cfm │ │ │ ├── migrator.cfm │ │ │ ├── packages.cfm │ │ │ ├── pluginentry.cfm │ │ │ ├── plugins.cfm │ │ │ ├── routes.cfm │ │ │ ├── routetester.cfm │ │ │ ├── routetesterprocess.cfm │ │ │ ├── runner.cfm │ │ │ ├── templating.cfm │ │ │ └── tests.cfm │ │ ├── tests │ │ ├── Application.cfc │ │ ├── Test.cfc │ │ ├── _assets │ │ │ ├── controllers │ │ │ │ ├── ApiTest.cfc │ │ │ │ ├── Controller.cfc │ │ │ │ ├── ControllerWithModel.cfc │ │ │ │ ├── ControllerWithModelErrors.cfc │ │ │ │ ├── ControllerWithNestedModel.cfc │ │ │ │ ├── CsrfProtectedExcept.cfc │ │ │ │ ├── CsrfProtectedOnly.cfc │ │ │ │ ├── CsrfProtectedWithException.cfc │ │ │ │ ├── Filtering.cfc │ │ │ │ ├── Galleries.cfc │ │ │ │ ├── MixedFormatTest.cfc │ │ │ │ ├── Test.cfc │ │ │ │ ├── Verifies.cfc │ │ │ │ └── admin │ │ │ │ │ └── Admin.cfc │ │ │ ├── files │ │ │ │ ├── cfwheels-logo.png │ │ │ │ ├── cfwheels-logo.txt │ │ │ │ ├── sendFile.txt │ │ │ │ └── wheelslogo.txt │ │ │ ├── migrator │ │ │ │ └── migrations │ │ │ │ │ ├── 001_create_bunyips_table.cfc │ │ │ │ │ ├── 002_create_dropbears_table.cfc │ │ │ │ │ └── 003_create_hoopsnakes_table.cfc │ │ │ ├── models │ │ │ │ ├── Author.cfc │ │ │ │ ├── AuthorAlternateDatasource.cfc │ │ │ │ ├── AuthorSelectArgument.cfc │ │ │ │ ├── Category.cfc │ │ │ │ ├── City.cfc │ │ │ │ ├── Classification.cfc │ │ │ │ ├── CollisionTest.cfc │ │ │ │ ├── CombiKey.cfc │ │ │ │ ├── Comment.cfc │ │ │ │ ├── Gallery.cfc │ │ │ │ ├── Model.cfc │ │ │ │ ├── NoPrimaryKey.cfc │ │ │ │ ├── Photo.cfc │ │ │ │ ├── Photo2.cfc │ │ │ │ ├── PhotoGallery.cfc │ │ │ │ ├── PhotoGalleryPhoto.cfc │ │ │ │ ├── Post.cfc │ │ │ │ ├── PostWithAfterFindCallback.cfc │ │ │ │ ├── Profile.cfc │ │ │ │ ├── Shop.cfc │ │ │ │ ├── SqlType.cfc │ │ │ │ ├── Tag.cfc │ │ │ │ ├── TagFalseCallbacks.cfc │ │ │ │ ├── TagWithDataCallbacks.cfc │ │ │ │ ├── Truck.cfc │ │ │ │ ├── User.cfc │ │ │ │ ├── User2.cfc │ │ │ │ ├── User3.cfc │ │ │ │ ├── UserAutomaticValidations.cfc │ │ │ │ ├── UserAutomaticValidationsOff.cfc │ │ │ │ ├── UserBlank.cfc │ │ │ │ ├── UserTableless.cfc │ │ │ │ ├── ViewUserPhotoKeyPhotoGalleryId.cfc │ │ │ │ └── ViewUserPhotoKeyUserId.cfc │ │ │ ├── plugins │ │ │ │ ├── dependant │ │ │ │ │ └── TestPlugin1 │ │ │ │ │ │ └── TestPlugin1.cfc │ │ │ │ ├── overwriting │ │ │ │ │ ├── TestGlobalMixins-0.0.2.zip │ │ │ │ │ └── testglobalmixins │ │ │ │ │ │ ├── TestGlobalMixins.cfc │ │ │ │ │ │ └── index.cfm │ │ │ │ ├── removing │ │ │ │ │ └── TestGlobalMixins-0.0.2.zip │ │ │ │ ├── runner │ │ │ │ │ ├── runner01 │ │ │ │ │ │ ├── Runner01.cfc │ │ │ │ │ │ └── index.cfm │ │ │ │ │ └── runner02 │ │ │ │ │ │ ├── Runner02.cfc │ │ │ │ │ │ └── index.cfm │ │ │ │ ├── standard │ │ │ │ │ ├── TestAssignMixins │ │ │ │ │ │ └── TestAssignMixins.cfc │ │ │ │ │ ├── TestDefaultAssignMixins │ │ │ │ │ │ └── TestDefaultAssignMixins.cfc │ │ │ │ │ ├── TestGlobalMixins │ │ │ │ │ │ └── TestGlobalMixins.cfc │ │ │ │ │ └── TestIncompatableVersion │ │ │ │ │ │ └── TestIncompatableVersion.cfc │ │ │ │ └── unpacking │ │ │ │ │ ├── TestDefaultAssignMixins-0.0.2.zip │ │ │ │ │ └── TestGlobalMixins-0.0.2.zip │ │ │ ├── sharedappname │ │ │ │ ├── Application.cfc │ │ │ │ └── test.cfm │ │ │ ├── testframework │ │ │ │ ├── ValidTestPackage.cfc │ │ │ │ └── _UnderscoredPackage.cfc │ │ │ └── views │ │ │ │ ├── _partialrootlayout.cfm │ │ │ │ ├── helpers.cfm │ │ │ │ ├── layout.cfm │ │ │ │ ├── main │ │ │ │ └── template.cfm │ │ │ │ ├── rootlayout.cfm │ │ │ │ ├── shared │ │ │ │ ├── anotherplainemailtemplate.cfm │ │ │ │ └── layout.cfm │ │ │ │ └── test │ │ │ │ ├── _custom.cfm │ │ │ │ ├── _partialdataexplicitpublic.cfm │ │ │ │ ├── _partialdataimplicitprivate.cfm │ │ │ │ ├── _partialdataimplicitpublic.cfm │ │ │ │ ├── _partiallayout.cfm │ │ │ │ ├── _partialtemplate.cfm │ │ │ │ ├── _testpartial.cfm │ │ │ │ ├── _testpartial2.cfm │ │ │ │ ├── _user.cfm │ │ │ │ ├── emaillayout.cfm │ │ │ │ ├── helpercaller.cfm │ │ │ │ ├── helpers.cfm │ │ │ │ ├── htmlemailtemplate.cfm │ │ │ │ ├── plainemailtemplate.cfm │ │ │ │ ├── specificlayout.cfm │ │ │ │ ├── sub │ │ │ │ ├── anotherhtmlemailtemplate.cfm │ │ │ │ └── layout.cfm │ │ │ │ ├── template.cfm │ │ │ │ ├── test.cfm │ │ │ │ ├── test.json.cfm │ │ │ │ ├── test.pdf.cfm │ │ │ │ ├── test.xml.cfm │ │ │ │ └── test2.cfm │ │ ├── controller │ │ │ ├── caching │ │ │ │ ├── addcachableaction.cfc │ │ │ │ ├── cachableactions.cfc │ │ │ │ ├── caches.cfc │ │ │ │ ├── cachesettingsforaction.cfc │ │ │ │ ├── clearcachableactions.cfc │ │ │ │ ├── hascachableactions.cfc │ │ │ │ └── setcachableactions.cfc │ │ │ ├── csrf │ │ │ │ ├── cookie │ │ │ │ │ ├── CsrfProtectedExcept.cfc │ │ │ │ │ ├── CsrfProtectedOnly.cfc │ │ │ │ │ ├── CsrfProtectedWithException.cfc │ │ │ │ │ ├── setup.cfm │ │ │ │ │ └── teardown.cfm │ │ │ │ └── session │ │ │ │ │ ├── CsrfProtectedExcept.cfc │ │ │ │ │ ├── CsrfProtectedOnly.cfc │ │ │ │ │ ├── CsrfProtectedWithException.cfc │ │ │ │ │ ├── setup.cfm │ │ │ │ │ └── teardown.cfm │ │ │ ├── filters │ │ │ │ ├── filterchain.cfc │ │ │ │ ├── filters.cfc │ │ │ │ ├── runfilters.cfc │ │ │ │ └── setfilterchain.cfc │ │ │ ├── flash │ │ │ │ ├── cookieStorage.cfc │ │ │ │ ├── flash.cfc │ │ │ │ ├── flashKeep.cfc │ │ │ │ ├── flashclear.cfc │ │ │ │ ├── flashcount.cfc │ │ │ │ ├── flashdelete.cfc │ │ │ │ ├── flashinsert.cfc │ │ │ │ ├── flashisempty.cfc │ │ │ │ ├── flashkeyexists.cfc │ │ │ │ ├── flashmessages.cfc │ │ │ │ ├── flashnone.cfc │ │ │ │ ├── setup.cfm │ │ │ │ └── teardown.cfm │ │ │ ├── initialization │ │ │ │ └── general.cfc │ │ │ ├── miscellaneous │ │ │ │ ├── callaction.cfc │ │ │ │ ├── document.cfm │ │ │ │ ├── helpers.cfc │ │ │ │ ├── performedRenderOrRedirect.cfc │ │ │ │ ├── sendfile.cfc │ │ │ │ └── sendmail.cfc │ │ │ ├── provides │ │ │ │ ├── initialization.cfc │ │ │ │ └── requestcontenttype.cfc │ │ │ ├── redirection │ │ │ │ └── redirectto.cfc │ │ │ ├── rendering │ │ │ │ ├── argumentsForPartial.cfc │ │ │ │ ├── includecontent.cfc │ │ │ │ ├── layouts.cfc │ │ │ │ ├── rendernothing.cfc │ │ │ │ ├── renderpartial.cfc │ │ │ │ ├── rendertext.cfc │ │ │ │ ├── renderview.cfc │ │ │ │ ├── renderwith.cfc │ │ │ │ ├── renderwithoutview.cfc │ │ │ │ ├── setup.cfm │ │ │ │ ├── specified_layouts.cfc │ │ │ │ └── teardown.cfm │ │ │ ├── request │ │ │ │ ├── isajax.cfc │ │ │ │ ├── isdelete.cfc │ │ │ │ ├── isget.cfc │ │ │ │ ├── ishead.cfc │ │ │ │ ├── isoptions.cfc │ │ │ │ ├── ispatch.cfc │ │ │ │ ├── ispost.cfc │ │ │ │ ├── isput.cfc │ │ │ │ ├── issecure.cfc │ │ │ │ ├── pagination.cfc │ │ │ │ ├── setup.cfm │ │ │ │ └── teardown.cfm │ │ │ └── verifies │ │ │ │ └── verifies.cfc │ │ ├── dispatch │ │ │ ├── findMatchingRoute.cfc │ │ │ ├── findMatchingRouteMega.cfc │ │ │ ├── getrequestmethod.cfc │ │ │ ├── request.cfc │ │ │ └── setCorsHeaders.cfc │ │ ├── env.cfm │ │ ├── global │ │ │ ├── caching.cfc │ │ │ ├── internal │ │ │ │ ├── args.cfc │ │ │ │ ├── cgiscope.cfc │ │ │ │ ├── checkMinimumVersion.cfc │ │ │ │ ├── fullCgiDomainString.cfc │ │ │ │ ├── getrequesttimeout.cfc │ │ │ │ ├── hashedkey.cfc │ │ │ │ ├── listClean.cfc │ │ │ │ ├── listToStruct.cfc │ │ │ │ └── wildcardDomainMatchCGI.cfc │ │ │ ├── public │ │ │ │ ├── deobfuscateparam.cfc │ │ │ │ ├── humanize.cfc │ │ │ │ ├── obfuscateparam.cfc │ │ │ │ └── processrequest.cfc │ │ │ ├── strings.cfc │ │ │ └── urlfor.cfc │ │ ├── internal │ │ │ └── model │ │ │ │ └── validations │ │ │ │ └── ValidatesLengthOf.cfc │ │ ├── mapper │ │ │ ├── initialization.cfc │ │ │ ├── mapping.cfc │ │ │ ├── matching.cfc │ │ │ ├── package.cfc │ │ │ ├── redirect.cfc │ │ │ ├── resources.cfc │ │ │ ├── root.cfc │ │ │ ├── utilities.cfc │ │ │ └── wildcard.cfc │ │ ├── migrator │ │ │ ├── migration │ │ │ │ ├── addbiginteger.cfc │ │ │ │ ├── addbinary.cfc │ │ │ │ ├── addboolean.cfc │ │ │ │ ├── addchar.cfc │ │ │ │ ├── addcolumn.cfc │ │ │ │ ├── adddate.cfc │ │ │ │ ├── adddatetime.cfc │ │ │ │ ├── adddecimal.cfc │ │ │ │ ├── addfloat.cfc │ │ │ │ ├── addforeignkey.cfc │ │ │ │ ├── addindex.cfc │ │ │ │ ├── addinteger.cfc │ │ │ │ ├── addrecord.cfc │ │ │ │ ├── addstring.cfc │ │ │ │ ├── addtext.cfc │ │ │ │ ├── addtime.cfc │ │ │ │ ├── addtimestamp.cfc │ │ │ │ ├── adduniqueidentifier.cfc │ │ │ │ ├── announce.cfc │ │ │ │ ├── changecolumn.cfc │ │ │ │ ├── createtable.cfc │ │ │ │ ├── createview.cfc │ │ │ │ ├── dropforeignkey.cfc │ │ │ │ ├── droptable.cfc │ │ │ │ ├── dropview.cfc │ │ │ │ ├── execute.cfc │ │ │ │ ├── removecolumn.cfc │ │ │ │ ├── removeindex.cfc │ │ │ │ ├── removerecord.cfc │ │ │ │ ├── renamecolumn.cfc │ │ │ │ ├── renametable.cfc │ │ │ │ └── updaterecord.cfc │ │ │ └── migrator │ │ │ │ ├── adapters.cfc │ │ │ │ ├── getavailablemigrations.cfc │ │ │ │ ├── getcurrentmigrationversion.cfc │ │ │ │ ├── helpers.cfm │ │ │ │ ├── migrateto.cfc │ │ │ │ └── redomigration.cfc │ │ ├── model │ │ │ ├── associations │ │ │ │ ├── belongsTo.cfc │ │ │ │ ├── hasMany.cfc │ │ │ │ └── hasOne.cfc │ │ │ ├── calculations │ │ │ │ ├── average.cfc │ │ │ │ ├── count.cfc │ │ │ │ ├── maximum.cfc │ │ │ │ ├── minimum.cfc │ │ │ │ └── sum.cfc │ │ │ ├── callbacks │ │ │ │ ├── afterDelete.cfc │ │ │ │ ├── afterFind.cfc │ │ │ │ ├── afterFindNonLegacy.cfc │ │ │ │ ├── afterSaveProperties.cfc │ │ │ │ ├── afterSaving.cfc │ │ │ │ ├── beforeCreate.cfc │ │ │ │ ├── beforeCreateAndbeforeUpdate.cfc │ │ │ │ ├── beforeDelete.cfc │ │ │ │ ├── beforeSave.cfc │ │ │ │ ├── beforeUpdate.cfc │ │ │ │ ├── beforeValidation.cfc │ │ │ │ ├── beforeValidationOnCreate.cfc │ │ │ │ ├── beforeValidationOnUpdate.cfc │ │ │ │ └── custom.cfc │ │ │ ├── crud │ │ │ │ ├── binarydata.cfc │ │ │ │ ├── changes.cfc │ │ │ │ ├── create.cfc │ │ │ │ ├── dbinfo.cfm │ │ │ │ ├── findall.cfc │ │ │ │ ├── finders.cfc │ │ │ │ ├── findone.cfc │ │ │ │ ├── findonebyxxx.cfc │ │ │ │ ├── from.cfc │ │ │ │ ├── group.cfc │ │ │ │ ├── order.cfc │ │ │ │ ├── pagination.cfc │ │ │ │ ├── properties.cfc │ │ │ │ ├── select.cfc │ │ │ │ ├── updates.cfc │ │ │ │ └── where.cfc │ │ │ ├── delete │ │ │ │ ├── delete.cfc │ │ │ │ ├── deleteall.cfc │ │ │ │ ├── deletebykey.cfc │ │ │ │ └── deleteone.cfc │ │ │ ├── errors │ │ │ │ └── errors.cfc │ │ │ ├── miscellaneous │ │ │ │ ├── composite.cfc │ │ │ │ ├── objectFileName.cfc │ │ │ │ ├── objectid.cfc │ │ │ │ ├── primaryKeys.cfc │ │ │ │ ├── setPagination.cfc │ │ │ │ └── tableName.cfc │ │ │ ├── nestedproperties │ │ │ │ ├── has_many.cfc │ │ │ │ └── has_one.cfc │ │ │ ├── onmissingmethod │ │ │ │ ├── belongsto │ │ │ │ │ ├── hasobject.cfc │ │ │ │ │ └── object.cfc │ │ │ │ ├── hasMany │ │ │ │ │ ├── addobject.cfc │ │ │ │ │ ├── createobject.cfc │ │ │ │ │ ├── deleteallobjects.cfc │ │ │ │ │ ├── deleteobject.cfc │ │ │ │ │ ├── findoneobject.cfc │ │ │ │ │ ├── hasobjects.cfc │ │ │ │ │ ├── newobject.cfc │ │ │ │ │ ├── objectcount.cfc │ │ │ │ │ ├── objects.cfc │ │ │ │ │ ├── removeallobjects.cfc │ │ │ │ │ └── removeobject.cfc │ │ │ │ └── hasone │ │ │ │ │ ├── createobject.cfc │ │ │ │ │ ├── deleteobject.cfc │ │ │ │ │ ├── hasobject.cfc │ │ │ │ │ ├── newobject.cfc │ │ │ │ │ ├── object.cfc │ │ │ │ │ ├── removeobject.cfc │ │ │ │ │ └── setobject.cfc │ │ │ ├── properties │ │ │ │ ├── PropertyIsBlank.cfc │ │ │ │ ├── accessibleproperties.cfc │ │ │ │ ├── columnforproperty.cfc │ │ │ │ ├── columns.cfc │ │ │ │ ├── defaults.cfc │ │ │ │ ├── hasChanged.cfc │ │ │ │ ├── hasproperty.cfc │ │ │ │ ├── ignoredcolumns.cfc │ │ │ │ ├── key.cfc │ │ │ │ ├── properties.cfc │ │ │ │ ├── propertyispresent.cfc │ │ │ │ ├── protectedproperties.cfc │ │ │ │ ├── timestamps.cfc │ │ │ │ └── toggle.cfc │ │ │ ├── raisedErrors │ │ │ │ └── raisedErrors.cfc │ │ │ ├── read │ │ │ │ ├── datasource.cfc │ │ │ │ ├── findallkeys.cfc │ │ │ │ ├── findfirst.cfc │ │ │ │ ├── findlast.cfc │ │ │ │ └── findorcreateby.cfc │ │ │ ├── sql │ │ │ │ └── whereclause.cfc │ │ │ ├── transactions │ │ │ │ └── invokewithtransaction.cfc │ │ │ ├── validations │ │ │ │ ├── automatic_validations.cfc │ │ │ │ ├── conditional_validations.cfc │ │ │ │ ├── default_validations.cfc │ │ │ │ ├── low_level_validations.cfc │ │ │ │ ├── skip_validations.cfc │ │ │ │ ├── standard_validations.cfc │ │ │ │ ├── standard_validations_tableless.cfc │ │ │ │ └── validation_error_messages.cfc │ │ │ └── views │ │ │ │ └── views.cfc │ │ ├── plugins │ │ │ ├── dependant.cfc │ │ │ ├── helpers.cfm │ │ │ ├── injection.cfc │ │ │ ├── overwriting.cfc │ │ │ ├── removing.cfc │ │ │ ├── runner.cfc │ │ │ ├── standard.cfc │ │ │ └── unpacking.cfc │ │ ├── populate.cfm │ │ ├── routing │ │ │ └── findMatchingRoute.cfc │ │ ├── testframework │ │ │ ├── cleantestcase.cfc │ │ │ ├── cleantestname.cfc │ │ │ ├── iscorefile.cfc │ │ │ └── isvalidtest.cfc │ │ └── view │ │ │ ├── assets │ │ │ ├── assetDomain.cfc │ │ │ ├── assetQueryString.cfc │ │ │ ├── imagetag.cfc │ │ │ ├── javaScriptIncludeTag.cfc │ │ │ └── styleSheetLinkTag.cfc │ │ │ ├── content │ │ │ └── includePartial.cfc │ │ │ ├── csrf │ │ │ ├── authenticityTokenField.cfc │ │ │ └── csrfMetaTags.cfc │ │ │ ├── dates │ │ │ ├── distanceOfTimeInWords.cfc │ │ │ ├── timeAgoInWords.cfc │ │ │ └── timeUntilInWords.cfc │ │ │ ├── errors │ │ │ ├── errorMessageOn.cfc │ │ │ └── errorMessagesFor.cfc │ │ │ ├── forms │ │ │ ├── buttonTag.cfc │ │ │ ├── checkBoxTag.cfc │ │ │ ├── checkbox.cfc │ │ │ ├── endFormTag.cfc │ │ │ ├── fileField.cfc │ │ │ ├── fileFieldTag.cfc │ │ │ ├── hiddenField.cfc │ │ │ ├── hiddenFieldTag.cfc │ │ │ ├── htmlAttributes.cfc │ │ │ ├── label.cfc │ │ │ ├── objectName.cfc │ │ │ ├── passwordField.cfc │ │ │ ├── passwordFieldTag.cfc │ │ │ ├── radioButton.cfc │ │ │ ├── radioButtonTag.cfc │ │ │ ├── select.cfc │ │ │ ├── selectTag.cfc │ │ │ ├── startFormTag.cfc │ │ │ ├── submitTag.cfc │ │ │ ├── textArea.cfc │ │ │ ├── textAreaTag.cfc │ │ │ ├── textField.cfc │ │ │ ├── textFieldTag.cfc │ │ │ └── yearSelect.cfc │ │ │ ├── formsdate │ │ │ └── yearMonthHourMinuteSecondSelectTagContent.cfc │ │ │ ├── formsdateobject │ │ │ ├── DateSelect.cfc │ │ │ ├── DateTimeSelect.cfc │ │ │ └── TimeSelect.cfc │ │ │ ├── formsdateplain │ │ │ ├── DateSelectTags.cfc │ │ │ ├── DateTimeSelectTags.cfc │ │ │ ├── DaySelectTag.cfc │ │ │ ├── HourSelectTag.cfc │ │ │ ├── MinuteSelectTag.cfc │ │ │ ├── MonthSelectTag.cfc │ │ │ ├── SecondSelectTag.cfc │ │ │ ├── TimeSelectTags.cfc │ │ │ └── YearSelectTag.cfc │ │ │ ├── links │ │ │ └── paginationlinks.cfc │ │ │ ├── miscellaneous │ │ │ ├── contentFor.cfc │ │ │ ├── cycle.cfc │ │ │ ├── element.cfc │ │ │ ├── getobject.cfc │ │ │ ├── resetcycle.cfc │ │ │ ├── tag.cfc │ │ │ └── tagId_and_tagName.cfc │ │ │ ├── sanitize │ │ │ ├── striplinks.cfc │ │ │ └── striptags.cfc │ │ │ ├── text │ │ │ ├── autolink.cfc │ │ │ ├── excerpt.cfc │ │ │ ├── highlight.cfc │ │ │ ├── simpleformat.cfc │ │ │ ├── titleize.cfc │ │ │ ├── truncate.cfc │ │ │ └── wordtruncate.cfc │ │ │ └── urls │ │ │ ├── buttonTo.cfc │ │ │ ├── linkTo.cfc │ │ │ ├── mailTo.cfc │ │ │ ├── pagination.cfc │ │ │ └── urlFor.cfc │ │ ├── tests_testbox │ │ ├── Application.cfc │ │ ├── _assets │ │ │ ├── controllers │ │ │ │ ├── Controller.cfc │ │ │ │ ├── ControllerWithModel.cfc │ │ │ │ ├── ControllerWithModelErrors.cfc │ │ │ │ ├── ControllerWithNestedModel.cfc │ │ │ │ ├── ControllerWithNestedModelErrors.cfc │ │ │ │ ├── CsrfProtectedExcept.cfc │ │ │ │ ├── CsrfProtectedOnly.cfc │ │ │ │ ├── CsrfProtectedWithException.cfc │ │ │ │ ├── Filters.cfc │ │ │ │ ├── Galleries.cfc │ │ │ │ ├── Sample.cfc │ │ │ │ ├── Test.cfc │ │ │ │ ├── Verifies.cfc │ │ │ │ └── admin │ │ │ │ │ └── Admin.cfc │ │ │ ├── files │ │ │ │ ├── cfwheels-logo.png │ │ │ │ ├── cfwheels-logo.txt │ │ │ │ ├── sendFile.txt │ │ │ │ └── wheelslogo.txt │ │ │ ├── migrator │ │ │ │ └── migrations │ │ │ │ │ ├── 001_create_bunyips_table.cfc │ │ │ │ │ ├── 002_create_dropbears_table.cfc │ │ │ │ │ └── 003_create_hoopsnakes_table.cfc │ │ │ ├── models │ │ │ │ ├── Author.cfc │ │ │ │ ├── AuthorSelectArgument.cfc │ │ │ │ ├── Category.cfc │ │ │ │ ├── City.cfc │ │ │ │ ├── Classification.cfc │ │ │ │ ├── CollisionTest.cfc │ │ │ │ ├── CombiKey.cfc │ │ │ │ ├── Comment.cfc │ │ │ │ ├── Gallery.cfc │ │ │ │ ├── Model.cfc │ │ │ │ ├── NoPrimaryKey.cfc │ │ │ │ ├── Photo.cfc │ │ │ │ ├── Photo2.cfc │ │ │ │ ├── PhotoGallery.cfc │ │ │ │ ├── PhotoGalleryPhoto.cfc │ │ │ │ ├── Post.cfc │ │ │ │ ├── PostWithAfterFindCallback.cfc │ │ │ │ ├── Profile.cfc │ │ │ │ ├── SampleModel.cfc │ │ │ │ ├── Shop.cfc │ │ │ │ ├── SqlType.cfc │ │ │ │ ├── Tag.cfc │ │ │ │ ├── TagFalseCallbacks.cfc │ │ │ │ ├── TagWithDataCallbacks.cfc │ │ │ │ ├── Truck.cfc │ │ │ │ ├── User.cfc │ │ │ │ ├── User2.cfc │ │ │ │ ├── User3.cfc │ │ │ │ ├── UserAutomaticValidations.cfc │ │ │ │ ├── UserAutomaticValidationsOff.cfc │ │ │ │ ├── UserBlank.cfc │ │ │ │ ├── UserTableless.cfc │ │ │ │ ├── ViewUserPhotoKeyPhotoGalleryId.cfc │ │ │ │ └── ViewUserPhotoKeyUserId.cfc │ │ │ ├── plugins │ │ │ │ ├── dependant │ │ │ │ │ └── TestPlugin1 │ │ │ │ │ │ └── TestPlugin1.cfc │ │ │ │ ├── overwriting │ │ │ │ │ ├── TestGlobalMixins-0.0.2.zip │ │ │ │ │ └── testglobalmixins │ │ │ │ │ │ ├── TestGlobalMixins.cfc │ │ │ │ │ │ └── index.cfm │ │ │ │ ├── removing │ │ │ │ │ └── TestGlobalMixins-0.0.2.zip │ │ │ │ ├── runner │ │ │ │ │ ├── runner01 │ │ │ │ │ │ ├── Runner01.cfc │ │ │ │ │ │ └── index.cfm │ │ │ │ │ └── runner02 │ │ │ │ │ │ ├── Runner02.cfc │ │ │ │ │ │ └── index.cfm │ │ │ │ ├── standard │ │ │ │ │ ├── TestAssignMixins │ │ │ │ │ │ └── TestAssignMixins.cfc │ │ │ │ │ ├── TestDefaultAssignMixins │ │ │ │ │ │ └── TestDefaultAssignMixins.cfc │ │ │ │ │ ├── TestGlobalMixins │ │ │ │ │ │ └── TestGlobalMixins.cfc │ │ │ │ │ └── TestIncompatableVersion │ │ │ │ │ │ └── TestIncompatableVersion.cfc │ │ │ │ └── unpacking │ │ │ │ │ ├── TestDefaultAssignMixins-0.0.2.zip │ │ │ │ │ └── TestGlobalMixins-0.0.2.zip │ │ │ └── views │ │ │ │ ├── _partialrootlayout.cfm │ │ │ │ ├── helpers.cfm │ │ │ │ ├── layout.cfm │ │ │ │ ├── main │ │ │ │ └── template.cfm │ │ │ │ ├── rootlayout.cfm │ │ │ │ ├── sample │ │ │ │ ├── badRequest.cfm │ │ │ │ ├── httpStatusOkTest.cfm │ │ │ │ └── linkToTest.cfm │ │ │ │ ├── shared │ │ │ │ ├── anotherplainemailtemplate.cfm │ │ │ │ └── layout.cfm │ │ │ │ └── test │ │ │ │ ├── _custom.cfm │ │ │ │ ├── _partialdataexplicitpublic.cfm │ │ │ │ ├── _partialdataimplicitprivate.cfm │ │ │ │ ├── _partialdataimplicitpublic.cfm │ │ │ │ ├── _partiallayout.cfm │ │ │ │ ├── _partialtemplate.cfm │ │ │ │ ├── _testpartial.cfm │ │ │ │ ├── _testpartial2.cfm │ │ │ │ ├── _user.cfm │ │ │ │ ├── emaillayout.cfm │ │ │ │ ├── helpercaller.cfm │ │ │ │ ├── helpers.cfm │ │ │ │ ├── htmlemailtemplate.cfm │ │ │ │ ├── plainemailtemplate.cfm │ │ │ │ ├── specificlayout.cfm │ │ │ │ ├── sub │ │ │ │ ├── anotherhtmlemailtemplate.cfm │ │ │ │ └── layout.cfm │ │ │ │ ├── template.cfm │ │ │ │ ├── test.cfm │ │ │ │ ├── test.json.cfm │ │ │ │ ├── test.pdf.cfm │ │ │ │ ├── test.xml.cfm │ │ │ │ └── test2.cfm │ │ ├── _navigation.cfm │ │ ├── html.cfm │ │ ├── populate.cfm │ │ ├── resources │ │ │ └── app │ │ │ │ ├── config │ │ │ │ ├── app.cfm │ │ │ │ ├── development │ │ │ │ │ └── settings.cfm │ │ │ │ ├── environment.cfm │ │ │ │ ├── maintenance │ │ │ │ │ └── settings.cfm │ │ │ │ ├── production │ │ │ │ │ └── settings.cfm │ │ │ │ ├── routes.cfm │ │ │ │ ├── settings.cfm │ │ │ │ └── testing │ │ │ │ │ └── settings.cfm │ │ │ │ ├── events │ │ │ │ ├── onabort.cfm │ │ │ │ ├── onapplicationend.cfm │ │ │ │ ├── onapplicationstart.cfm │ │ │ │ ├── onerror.cfm │ │ │ │ ├── onmaintenance.cfm │ │ │ │ ├── onmissingtemplate.cfm │ │ │ │ ├── onrequestend.cfm │ │ │ │ ├── onrequeststart.cfm │ │ │ │ ├── onsessionend.cfm │ │ │ │ └── onsessionstart.cfm │ │ │ │ ├── global │ │ │ │ └── functions.cfm │ │ │ │ └── view │ │ │ │ ├── helpers.cfm │ │ │ │ └── layout.cfm │ │ ├── routes.cfm │ │ ├── runner.cfm │ │ ├── server.json │ │ └── specs │ │ │ ├── BasicsSpec.cfc │ │ │ ├── controller │ │ │ ├── cachingSpec.cfc │ │ │ ├── csrf │ │ │ │ ├── cookieSpec.cfc │ │ │ │ └── sessionSpec.cfc │ │ │ ├── filtersSpec.cfc │ │ │ ├── flashSpec.cfc │ │ │ ├── initializationSpec.cfc │ │ │ ├── miscellaneousSpec.cfc │ │ │ ├── providesSpec.cfc │ │ │ ├── redirectionSpec.cfc │ │ │ ├── renderingSpec.cfc │ │ │ ├── requestSpec.cfc │ │ │ └── verifiesSpec.cfc │ │ │ ├── dispatch │ │ │ ├── createParamsSpec.cfc │ │ │ ├── findMatchingRouteMegaSpec.cfc │ │ │ ├── findMatchingRouteSpec.cfc │ │ │ ├── getrequestmethodSpec.cfc │ │ │ ├── requestSpec.cfc │ │ │ └── setCorsHeadersSpec.cfc │ │ │ ├── environment │ │ │ └── ipbasedaccessSpec.cfc │ │ │ ├── events │ │ │ └── onerrorSpec.cfc │ │ │ ├── global │ │ │ ├── cachingSpec.cfc │ │ │ ├── dbinfoSpec.cfc │ │ │ ├── internalSpec.cfc │ │ │ ├── listcleanSpec.cfc │ │ │ ├── publicSpec.cfc │ │ │ ├── stringsSpec.cfc │ │ │ └── urlforSpec.cfc │ │ │ ├── internal │ │ │ └── model │ │ │ │ └── validationsSpec.cfc │ │ │ ├── mapper │ │ │ ├── MapperSpec.cfc │ │ │ ├── MappingSpec.cfc │ │ │ ├── MatchingSpec.cfc │ │ │ ├── ResourcesSpec.cfc │ │ │ ├── RootSpec.cfc │ │ │ ├── UtilsSpec.cfc │ │ │ └── WildcardSpec.cfc │ │ │ ├── mapperSpec.cfc │ │ │ ├── migrator │ │ │ ├── helperFunctions.cfm │ │ │ ├── migration │ │ │ │ └── mysqlTextSizesSpec.cfc │ │ │ ├── migrationSpec.cfc │ │ │ └── migratorSpec.cfc │ │ │ ├── model │ │ │ ├── associationsSpec.cfc │ │ │ ├── calculationsSpec.cfc │ │ │ ├── callbacksSpec.cfc │ │ │ ├── crudSpec.cfc │ │ │ ├── deleteSpec.cfc │ │ │ ├── errorsSpec.cfc │ │ │ ├── miscellaneousSpec.cfc │ │ │ ├── nestedpropertiesSpec.cfc │ │ │ ├── onmissingmethod │ │ │ │ ├── belongsToSpec.cfc │ │ │ │ ├── hasManySpec.cfc │ │ │ │ └── hasOneSpec.cfc │ │ │ ├── propertiesSpec.cfc │ │ │ ├── raceconditionSpec.cfc │ │ │ ├── raisedErrorsSpec.cfc │ │ │ ├── readSpec.cfc │ │ │ ├── sqlSpec.cfc │ │ │ ├── transactionsSpec.cfc │ │ │ ├── useindexSpec.cfc │ │ │ ├── validationsSpec.cfc │ │ │ └── viewsSpec.cfc │ │ │ ├── pluginsSpec.cfc │ │ │ ├── routingSpec.cfc │ │ │ ├── testframework.cfm │ │ │ └── view │ │ │ ├── assetsSpec.cfc │ │ │ ├── autoLinkSpec.cfc │ │ │ ├── checkboxSpec.cfc │ │ │ ├── contentSpec.cfc │ │ │ ├── csrfSpec.cfc │ │ │ ├── datesSpec.cfc │ │ │ ├── dateselectSpec.cfc │ │ │ ├── errorsSpec.cfc │ │ │ ├── flashMessagesSpec.cfc │ │ │ ├── formsSpec.cfc │ │ │ ├── formsdateSpec.cfc │ │ │ ├── formsdateobjectSpec.cfc │ │ │ ├── formsdateplainSpec.cfc │ │ │ ├── linksSpec.cfc │ │ │ ├── miscellaneousSpec.cfc │ │ │ ├── sanitizeSpec.cfc │ │ │ ├── textSpec.cfc │ │ │ ├── textfieldSpec.cfc │ │ │ └── urlsSpec.cfc │ │ ├── vendor │ │ └── toXml │ │ │ └── toXML.cfc │ │ └── view │ │ ├── assets.cfc │ │ ├── csrf.cfc │ │ ├── errors.cfc │ │ ├── forms.cfc │ │ ├── formsassociation.cfc │ │ ├── formsdate.cfc │ │ ├── formsdateobject.cfc │ │ ├── formsdateplain.cfc │ │ ├── formsobject.cfc │ │ ├── formsplain.cfc │ │ ├── links.cfc │ │ ├── miscellaneous.cfc │ │ └── sanitize.cfc └── tests │ ├── Application.cfc │ ├── BaseSpec.cfc │ ├── Test.cfc │ ├── runner.cfm │ └── specs │ ├── controllers │ └── ProductsTest.cfc │ ├── functions │ └── Example.cfc │ ├── jobs │ └── ProcessOrdersJobTest.cfc │ ├── mailers │ └── UserNotificationsMailerTest.cfc │ ├── models │ └── ProductTest.cfc │ └── requests │ └── Example.cfc ├── design_docs ├── ai-specs │ ├── documentation-audit.md │ └── refactor-testui │ │ ├── 01-ui-modernization.md │ │ ├── 02-test-details-display.md │ │ ├── 03-docker-integration.md │ │ ├── 04-preflight-system.md │ │ ├── README.md │ │ └── framework-fix-proposal.md ├── architecture │ ├── wheels-3-architecture-guide.md │ ├── wheels-4-architecture-guide.md │ ├── wheels-cli-commandbox-implementation.md │ └── wheels-cli-recommendations.md ├── scratchpad │ ├── ACTIVATED_COMMANDS_SUMMARY.md │ ├── AI-CLI.md │ ├── AI-CONTEXT.md │ ├── AI-ERRORS.md │ ├── AI-EXAMPLES.md │ ├── AI-MIGRATIONS.md │ ├── AI-PATTERNS.md │ ├── AI-TESTING.md │ ├── AI-TROUBLESHOOTING.md │ ├── CLI-Commandbox-Parameters.md │ ├── CLI-TEST-METHODOLOGY.md │ ├── CLI-TEST-PROMPT.md │ ├── CLI-TEST-RESULTS-20250620-1st-run.md │ ├── CLI-TEST-RESULTS-20250620-2nd-run.md │ ├── CLI-TEST-RESULTS-20250620-COMPLETE.md │ ├── CLI-TEST-RESULTS-20250620.md │ ├── CLI-TEST-RESULTS-TEMPLATE.md │ ├── Comprehensive CLI Commands.md │ ├── V3NOTES.md │ ├── cli-command-analysis.md │ └── publish-process-flow.md └── testing │ ├── testbox-migration-cheatsheet.md │ ├── testbox-optimization.md │ └── testing-with-testbox.md ├── docs ├── AI_INTEGRATION_GUIDE.md ├── api │ ├── v1.4.5.json │ ├── v2.0.0.json │ ├── v2.1.0.json │ ├── v2.2.0.json │ ├── v2.3.0.json │ ├── v2.4.0.json │ ├── v2.5.0.json │ └── v3.0.0.json ├── mkdocs.yml ├── overrides │ └── stylesheets │ │ └── gitbook.css ├── public │ ├── 404.html │ ├── SUMMARY │ │ └── index.html │ ├── _layouts │ │ ├── ebook │ │ │ ├── page.html │ │ │ ├── pdf_footer.html │ │ │ ├── pdf_header.html │ │ │ └── summary.html │ │ ├── layout.html │ │ └── website │ │ │ ├── header.html │ │ │ ├── languages.html │ │ │ ├── layout.html │ │ │ ├── page.html │ │ │ └── summary.html │ ├── assets │ │ ├── images │ │ │ └── favicon.png │ │ ├── javascripts │ │ │ ├── bundle.13a4f30d.min.js │ │ │ ├── bundle.13a4f30d.min.js.map │ │ │ ├── lunr │ │ │ │ ├── min │ │ │ │ │ ├── lunr.ar.min.js │ │ │ │ │ ├── lunr.da.min.js │ │ │ │ │ ├── lunr.de.min.js │ │ │ │ │ ├── lunr.du.min.js │ │ │ │ │ ├── lunr.el.min.js │ │ │ │ │ ├── lunr.es.min.js │ │ │ │ │ ├── lunr.fi.min.js │ │ │ │ │ ├── lunr.fr.min.js │ │ │ │ │ ├── lunr.he.min.js │ │ │ │ │ ├── lunr.hi.min.js │ │ │ │ │ ├── lunr.hu.min.js │ │ │ │ │ ├── lunr.hy.min.js │ │ │ │ │ ├── lunr.it.min.js │ │ │ │ │ ├── lunr.ja.min.js │ │ │ │ │ ├── lunr.jp.min.js │ │ │ │ │ ├── lunr.kn.min.js │ │ │ │ │ ├── lunr.ko.min.js │ │ │ │ │ ├── lunr.multi.min.js │ │ │ │ │ ├── lunr.nl.min.js │ │ │ │ │ ├── lunr.no.min.js │ │ │ │ │ ├── lunr.pt.min.js │ │ │ │ │ ├── lunr.ro.min.js │ │ │ │ │ ├── lunr.ru.min.js │ │ │ │ │ ├── lunr.sa.min.js │ │ │ │ │ ├── lunr.stemmer.support.min.js │ │ │ │ │ ├── lunr.sv.min.js │ │ │ │ │ ├── lunr.ta.min.js │ │ │ │ │ ├── lunr.te.min.js │ │ │ │ │ ├── lunr.th.min.js │ │ │ │ │ ├── lunr.tr.min.js │ │ │ │ │ ├── lunr.vi.min.js │ │ │ │ │ └── lunr.zh.min.js │ │ │ │ ├── tinyseg.js │ │ │ │ └── wordcut.js │ │ │ └── workers │ │ │ │ ├── search.d50fe291.min.js │ │ │ │ └── search.d50fe291.min.js.map │ │ └── stylesheets │ │ │ ├── main.342714a4.min.css │ │ │ ├── main.342714a4.min.css.map │ │ │ ├── palette.06af60db.min.css │ │ │ └── palette.06af60db.min.css.map │ ├── book.json │ ├── command-line-tools │ │ ├── cli-guides │ │ │ ├── creating-commands │ │ │ │ └── index.html │ │ │ ├── migrations │ │ │ │ └── index.html │ │ │ ├── service-architecture │ │ │ │ └── index.html │ │ │ ├── template-system │ │ │ │ └── index.html │ │ │ └── testing │ │ │ │ └── index.html │ │ ├── cli-overview │ │ │ └── index.html │ │ ├── commands │ │ │ ├── analysis │ │ │ │ ├── analyze-code │ │ │ │ │ └── index.html │ │ │ │ ├── analyze-performance │ │ │ │ │ └── index.html │ │ │ │ ├── analyze-security │ │ │ │ │ └── index.html │ │ │ │ └── analyze │ │ │ │ │ └── index.html │ │ │ ├── application-utilities │ │ │ │ ├── about │ │ │ │ │ └── index.html │ │ │ │ ├── deptree │ │ │ │ │ └── index.html │ │ │ │ ├── doctor │ │ │ │ │ └── index.html │ │ │ │ ├── index.html │ │ │ │ ├── notes │ │ │ │ │ └── index.html │ │ │ │ ├── routes-match │ │ │ │ │ └── index.html │ │ │ │ ├── routes │ │ │ │ │ └── index.html │ │ │ │ └── stats │ │ │ │ │ └── index.html │ │ │ ├── assets-cache-management │ │ │ │ └── index.html │ │ │ ├── ci │ │ │ │ └── ci-init │ │ │ │ │ └── index.html │ │ │ ├── config │ │ │ │ ├── config-env │ │ │ │ │ └── index.html │ │ │ │ ├── config-list │ │ │ │ │ └── index.html │ │ │ │ └── config-set │ │ │ │ │ └── index.html │ │ │ ├── core │ │ │ │ ├── deps │ │ │ │ │ └── index.html │ │ │ │ ├── destroy │ │ │ │ │ └── index.html │ │ │ │ ├── info │ │ │ │ │ └── index.html │ │ │ │ ├── init │ │ │ │ │ └── index.html │ │ │ │ ├── reload │ │ │ │ │ └── index.html │ │ │ │ └── watch │ │ │ │ │ └── index.html │ │ │ ├── database │ │ │ │ ├── database-management │ │ │ │ │ └── index.html │ │ │ │ ├── db-create │ │ │ │ │ └── index.html │ │ │ │ ├── db-drop │ │ │ │ │ └── index.html │ │ │ │ ├── db-dump │ │ │ │ │ └── index.html │ │ │ │ ├── db-reset │ │ │ │ │ └── index.html │ │ │ │ ├── db-restore │ │ │ │ │ └── index.html │ │ │ │ ├── db-rollback │ │ │ │ │ └── index.html │ │ │ │ ├── db-schema │ │ │ │ │ └── index.html │ │ │ │ ├── db-seed │ │ │ │ │ └── index.html │ │ │ │ ├── db-setup │ │ │ │ │ └── index.html │ │ │ │ ├── db-shell │ │ │ │ │ └── index.html │ │ │ │ ├── db-status │ │ │ │ │ └── index.html │ │ │ │ ├── db-version │ │ │ │ │ └── index.html │ │ │ │ ├── dbmigrate-create-blank │ │ │ │ │ └── index.html │ │ │ │ ├── dbmigrate-create-column │ │ │ │ │ └── index.html │ │ │ │ ├── dbmigrate-create-table │ │ │ │ │ └── index.html │ │ │ │ ├── dbmigrate-down │ │ │ │ │ └── index.html │ │ │ │ ├── dbmigrate-exec │ │ │ │ │ └── index.html │ │ │ │ ├── dbmigrate-info │ │ │ │ │ └── index.html │ │ │ │ ├── dbmigrate-latest │ │ │ │ │ └── index.html │ │ │ │ ├── dbmigrate-remove-table │ │ │ │ │ └── index.html │ │ │ │ ├── dbmigrate-reset │ │ │ │ │ └── index.html │ │ │ │ └── dbmigrate-up │ │ │ │ │ └── index.html │ │ │ ├── deploy │ │ │ │ ├── deploy-audit │ │ │ │ │ └── index.html │ │ │ │ ├── deploy-exec │ │ │ │ │ └── index.html │ │ │ │ ├── deploy-hooks │ │ │ │ │ └── index.html │ │ │ │ ├── deploy-init │ │ │ │ │ └── index.html │ │ │ │ ├── deploy-lock │ │ │ │ │ └── index.html │ │ │ │ ├── deploy-logs │ │ │ │ │ └── index.html │ │ │ │ ├── deploy-proxy │ │ │ │ │ └── index.html │ │ │ │ ├── deploy-push │ │ │ │ │ └── index.html │ │ │ │ ├── deploy-rollback │ │ │ │ │ └── index.html │ │ │ │ ├── deploy-secrets │ │ │ │ │ └── index.html │ │ │ │ ├── deploy-setup │ │ │ │ │ └── index.html │ │ │ │ ├── deploy-status │ │ │ │ │ └── index.html │ │ │ │ ├── deploy-stop │ │ │ │ │ └── index.html │ │ │ │ └── deploy │ │ │ │ │ └── index.html │ │ │ ├── docker │ │ │ │ ├── docker-deploy │ │ │ │ │ └── index.html │ │ │ │ └── docker-init │ │ │ │ │ └── index.html │ │ │ ├── documentation │ │ │ │ ├── docs-generate │ │ │ │ │ └── index.html │ │ │ │ ├── docs-serve │ │ │ │ │ └── index.html │ │ │ │ └── docs │ │ │ │ │ └── index.html │ │ │ ├── environment │ │ │ │ ├── console │ │ │ │ │ └── index.html │ │ │ │ ├── env-list │ │ │ │ │ └── index.html │ │ │ │ ├── env-setup │ │ │ │ │ └── index.html │ │ │ │ ├── env-switch │ │ │ │ │ └── index.html │ │ │ │ ├── env │ │ │ │ │ └── index.html │ │ │ │ ├── environment │ │ │ │ │ └── index.html │ │ │ │ └── runner │ │ │ │ │ └── index.html │ │ │ ├── generate │ │ │ │ ├── api-resource │ │ │ │ │ └── index.html │ │ │ │ ├── app-wizard │ │ │ │ │ └── index.html │ │ │ │ ├── app │ │ │ │ │ └── index.html │ │ │ │ ├── controller │ │ │ │ │ └── index.html │ │ │ │ ├── frontend │ │ │ │ │ └── index.html │ │ │ │ ├── model │ │ │ │ │ └── index.html │ │ │ │ ├── property │ │ │ │ │ └── index.html │ │ │ │ ├── resource │ │ │ │ │ └── index.html │ │ │ │ ├── route │ │ │ │ │ └── index.html │ │ │ │ ├── scaffold │ │ │ │ │ └── index.html │ │ │ │ ├── snippets │ │ │ │ │ └── index.html │ │ │ │ ├── test │ │ │ │ │ └── index.html │ │ │ │ └── view │ │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── maintenance │ │ │ │ ├── cleanup-commands │ │ │ │ │ └── index.html │ │ │ │ ├── index.html │ │ │ │ └── maintenance-mode │ │ │ │ │ └── index.html │ │ │ ├── performance │ │ │ │ ├── optimize-performance │ │ │ │ │ └── index.html │ │ │ │ └── optimize │ │ │ │ │ └── index.html │ │ │ ├── plugins │ │ │ │ ├── plugins-info │ │ │ │ │ └── index.html │ │ │ │ ├── plugins-init │ │ │ │ │ └── index.html │ │ │ │ ├── plugins-install │ │ │ │ │ └── index.html │ │ │ │ ├── plugins-list │ │ │ │ │ └── index.html │ │ │ │ ├── plugins-outdated │ │ │ │ │ └── index.html │ │ │ │ ├── plugins-remove │ │ │ │ │ └── index.html │ │ │ │ ├── plugins-search │ │ │ │ │ └── index.html │ │ │ │ ├── plugins-update-all │ │ │ │ │ └── index.html │ │ │ │ ├── plugins-update │ │ │ │ │ └── index.html │ │ │ │ └── plugins │ │ │ │ │ └── index.html │ │ │ ├── security │ │ │ │ ├── security-scan │ │ │ │ │ └── index.html │ │ │ │ └── security │ │ │ │ │ └── index.html │ │ │ ├── server │ │ │ │ ├── server-log │ │ │ │ │ └── index.html │ │ │ │ ├── server-open │ │ │ │ │ └── index.html │ │ │ │ ├── server-restart │ │ │ │ │ └── index.html │ │ │ │ ├── server-start │ │ │ │ │ └── index.html │ │ │ │ ├── server-status │ │ │ │ │ └── index.html │ │ │ │ ├── server-stop │ │ │ │ │ └── index.html │ │ │ │ └── server │ │ │ │ │ └── index.html │ │ │ └── testing │ │ │ │ ├── test-advanced │ │ │ │ └── index.html │ │ │ │ ├── test-coverage │ │ │ │ └── index.html │ │ │ │ ├── test-debug │ │ │ │ └── index.html │ │ │ │ ├── test-run │ │ │ │ └── index.html │ │ │ │ └── test │ │ │ │ └── index.html │ │ ├── configuration │ │ │ └── index.html │ │ ├── development-workflow │ │ │ └── index.html │ │ └── quick-start │ │ │ └── index.html │ ├── database-interaction-through-models │ │ ├── associations │ │ │ └── index.html │ │ ├── automatic-time-stamps │ │ │ └── index.html │ │ ├── calculated-properties │ │ │ └── index.html │ │ ├── column-statistics │ │ │ └── index.html │ │ ├── creating-records │ │ │ └── index.html │ │ ├── database-migrations │ │ │ ├── index.html │ │ │ └── migrations-in-production │ │ │ │ └── index.html │ │ ├── deleting-records │ │ │ └── index.html │ │ ├── dirty-records │ │ │ └── index.html │ │ ├── dynamic-finders │ │ │ └── index.html │ │ ├── getting-paginated-data │ │ │ └── index.html │ │ ├── nested-properties │ │ │ └── index.html │ │ ├── object-callbacks │ │ │ └── index.html │ │ ├── object-relational-mapping │ │ │ └── index.html │ │ ├── object-validation │ │ │ └── index.html │ │ ├── reading-records │ │ │ └── index.html │ │ ├── soft-delete │ │ │ └── index.html │ │ ├── transactions │ │ │ └── index.html │ │ ├── updating-records │ │ │ └── index.html │ │ └── using-multiple-data-sources │ │ │ └── index.html │ ├── displaying-views-to-users │ │ ├── creating-custom-view-helpers │ │ │ └── index.html │ │ ├── date-media-and-text-helpers │ │ │ └── index.html │ │ ├── displaying-links-for-pagination │ │ │ └── index.html │ │ ├── form-helpers-and-showing-errors │ │ │ └── index.html │ │ ├── layouts │ │ │ └── index.html │ │ ├── linking-pages │ │ │ └── index.html │ │ ├── localization │ │ │ └── index.html │ │ ├── pages │ │ │ └── index.html │ │ └── partials │ │ │ └── index.html │ ├── handling-requests-with-controllers │ │ ├── caching │ │ │ └── index.html │ │ ├── cors-requests │ │ │ └── index.html │ │ ├── event-handlers │ │ │ └── index.html │ │ ├── nesting-controllers │ │ │ └── index.html │ │ ├── obfuscating-urls │ │ │ └── index.html │ │ ├── redirecting-users │ │ │ └── index.html │ │ ├── rendering-content │ │ │ └── index.html │ │ ├── request-handling │ │ │ └── index.html │ │ ├── responding-with-multiple-formats │ │ │ └── index.html │ │ ├── routing │ │ │ └── index.html │ │ ├── sending-email │ │ │ └── index.html │ │ ├── sending-files │ │ │ └── index.html │ │ ├── url-rewriting │ │ │ ├── apache │ │ │ │ └── index.html │ │ │ ├── iis │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── nginx │ │ │ │ └── index.html │ │ │ └── tomcat │ │ │ │ └── index.html │ │ ├── using-filters │ │ │ └── index.html │ │ ├── using-the-flash │ │ │ └── index.html │ │ └── verification │ │ │ └── index.html │ ├── index.html │ ├── introduction │ │ ├── frameworks-and-wheels │ │ │ └── index.html │ │ ├── getting-started │ │ │ ├── beginner-tutorial-hello-database │ │ │ │ └── index.html │ │ │ ├── beginner-tutorial-hello-world │ │ │ │ └── index.html │ │ │ ├── running-local-development-servers │ │ │ │ └── index.html │ │ │ └── tutorial-wheels-ajax-and-you │ │ │ │ └── index.html │ │ ├── manual-installation │ │ │ └── index.html │ │ ├── readme │ │ │ ├── beginner-tutorial-hello-database │ │ │ │ └── index.html │ │ │ ├── beginner-tutorial-hello-world │ │ │ │ └── index.html │ │ │ ├── running-local-development-servers │ │ │ │ └── index.html │ │ │ └── tutorial-wheels-ajax-and-you │ │ │ │ └── index.html │ │ ├── requirements │ │ │ └── index.html │ │ ├── screencasts │ │ │ └── index.html │ │ └── upgrading │ │ │ └── index.html │ ├── plugins │ │ ├── developing-plugins │ │ │ └── index.html │ │ ├── installing-and-using-plugins │ │ │ └── index.html │ │ └── publishing-plugins │ │ │ └── index.html │ ├── project-documentation │ │ └── overview │ │ │ └── index.html │ ├── search │ │ └── search_index.json │ ├── sitemap.xml │ ├── sitemap.xml.gz │ ├── upgrading │ │ └── 3.0.0-config-migration │ │ │ └── index.html │ └── working-with-wheels │ │ ├── configuration-and-defaults │ │ └── index.html │ │ ├── contributing-to-wheels │ │ └── index.html │ │ ├── conventions │ │ └── index.html │ │ ├── directory-structure │ │ └── index.html │ │ ├── documenting-your-code │ │ └── index.html │ │ ├── submitting-pull-requests │ │ └── index.html │ │ ├── switching-environments │ │ └── index.html │ │ ├── testing-your-application │ │ └── index.html │ │ └── using-the-test-environment │ │ └── index.html └── src │ ├── .gitbook │ └── assets │ │ ├── 2102d2c-striptags.jpg │ │ ├── 222650494-da2c1b95-f817-40c3-a38e-b9f9db555ae8.png │ │ ├── 29a95a8-docs1.jpg │ │ ├── 4d9523e-wheels-tutorial_0002_5.png │ │ ├── 5298d15-wheels-tutorial_0004_3.png │ │ ├── 660aaf3-wheels-tutorial_0005_2.png │ │ ├── 73279f3-wheels_generate_app_larger.gif │ │ ├── 76e1179-Screen_Shot_2022-02-08_at_9.12.06_AM.png │ │ ├── 9f1a966-wheels-tutorial_0003_4.png │ │ ├── Screen Shot 2022-06-18 at 12.30.34 PM.png │ │ ├── Screen Shot 2022-06-18 at 12.31.01 PM.png │ │ ├── Screen Shot 2022-06-18 at 12.32.14 PM.png │ │ ├── Screen Shot 2022-06-18 at 12.32.43 PM.png │ │ ├── Screen Shot 2022-06-18 at 12.33.18 PM.png │ │ ├── Screen Shot 2022-06-18 at 12.34.17 PM.png │ │ ├── Screen Shot 2022-06-18 at 12.34.44 PM.png │ │ ├── Screen Shot 2022-06-18 at 12.35.09 PM.png │ │ ├── Screen Shot 2022-06-18 at 12.35.40 PM.png │ │ ├── a1f5810-Screen_Shot_2022-03-25_at_8.59.25_AM.png │ │ ├── a70878e-dbmigrate_2.png │ │ ├── aa84665-dbmigrate_3.png │ │ ├── cc70cb0-dbmigrate_1.png │ │ ├── eb3836d-dbmigrate_4.png │ │ ├── f600144-wheels-tutorial_0001_6.png │ │ ├── fc38a30-wheels-tutorial_0000_7.png │ │ └── wheels-home-page-1.png │ ├── README.md │ ├── SUMMARY.md │ ├── _layouts │ ├── ebook │ │ ├── page.html │ │ ├── pdf_footer.html │ │ ├── pdf_header.html │ │ └── summary.html │ ├── layout.html │ └── website │ │ ├── header.html │ │ ├── languages.html │ │ ├── layout.html │ │ ├── page.html │ │ └── summary.html │ ├── book.json │ ├── command-line-tools │ ├── cli-guides │ │ ├── creating-commands.md │ │ ├── migrations.md │ │ ├── service-architecture.md │ │ ├── template-system.md │ │ └── testing.md │ ├── cli-overview.md │ ├── commands │ │ ├── README.md │ │ ├── analysis │ │ │ ├── analyze-code.md │ │ │ ├── analyze-performance.md │ │ │ ├── analyze-security.md │ │ │ └── analyze.md │ │ ├── application-utilities │ │ │ ├── README.md │ │ │ └── about.md │ │ ├── assets-cache-management.md │ │ ├── benchmark │ │ │ └── README.md │ │ ├── config │ │ │ ├── config-check.md │ │ │ ├── config-diff.md │ │ │ └── config-dump.md │ │ ├── core │ │ │ ├── deps.md │ │ │ ├── destroy.md │ │ │ ├── info.md │ │ │ ├── init.md │ │ │ └── reload.md │ │ ├── database │ │ │ ├── db-create.md │ │ │ ├── db-drop.md │ │ │ ├── dbmigrate-create-blank.md │ │ │ ├── dbmigrate-create-column.md │ │ │ ├── dbmigrate-create-table.md │ │ │ ├── dbmigrate-down.md │ │ │ ├── dbmigrate-exec.md │ │ │ ├── dbmigrate-info.md │ │ │ ├── dbmigrate-latest.md │ │ │ ├── dbmigrate-remove-table.md │ │ │ ├── dbmigrate-reset.md │ │ │ └── dbmigrate-up.md │ │ ├── deployment │ │ │ └── README.md │ │ ├── docker │ │ │ └── docker-init.md │ │ ├── docs │ │ │ ├── docs-generate.md │ │ │ └── docs-serve.md │ │ ├── environment │ │ │ ├── env-list.md │ │ │ ├── env-merge.md │ │ │ ├── env-set.md │ │ │ ├── env-setup.md │ │ │ ├── env-show.md │ │ │ ├── env-switch.md │ │ │ └── env-validate.md │ │ ├── generate │ │ │ ├── api-resource.md │ │ │ ├── app-wizard.md │ │ │ ├── app.md │ │ │ ├── controller.md │ │ │ ├── helper.md │ │ │ ├── migration.md │ │ │ ├── model.md │ │ │ ├── property.md │ │ │ ├── route.md │ │ │ ├── scaffold.md │ │ │ ├── snippets.md │ │ │ ├── test.md │ │ │ └── view.md │ │ ├── get │ │ │ ├── get-environment.md │ │ │ └── get-settings.md │ │ ├── mcp │ │ │ ├── README.md │ │ │ ├── mcp-remove.md │ │ │ ├── mcp-setup.md │ │ │ ├── mcp-status.md │ │ │ ├── mcp-test.md │ │ │ └── mcp-update.md │ │ ├── plugins │ │ │ ├── plugins-info.md │ │ │ ├── plugins-init.md │ │ │ ├── plugins-install.md │ │ │ ├── plugins-list.md │ │ │ ├── plugins-outdated.md │ │ │ ├── plugins-remove.md │ │ │ ├── plugins-search.md │ │ │ ├── plugins-update-all.md │ │ │ └── plugins-update.md │ │ ├── security │ │ │ ├── README.md │ │ │ └── security-scan.md │ │ └── test │ │ │ ├── test-advanced.md │ │ │ └── test-run.md │ ├── configuration.md │ ├── development-workflow.md │ └── quick-start.md │ ├── database-interaction-through-models │ ├── associations.md │ ├── automatic-time-stamps.md │ ├── calculated-properties.md │ ├── column-statistics.md │ ├── creating-records.md │ ├── database-migrations │ │ ├── README.md │ │ └── migrations-in-production.md │ ├── deleting-records.md │ ├── dirty-records.md │ ├── dynamic-finders.md │ ├── getting-paginated-data.md │ ├── nested-properties.md │ ├── object-callbacks.md │ ├── object-relational-mapping.md │ ├── object-validation.md │ ├── reading-records.md │ ├── soft-delete.md │ ├── transactions.md │ ├── updating-records.md │ ├── using-multiple-data-sources.md │ └── using-sqlite.md │ ├── displaying-views-to-users │ ├── creating-custom-view-helpers.md │ ├── date-media-and-text-helpers.md │ ├── displaying-links-for-pagination.md │ ├── form-helpers-and-showing-errors.md │ ├── layouts.md │ ├── linking-pages.md │ ├── localization.md │ ├── pages.md │ └── partials.md │ ├── handling-requests-with-controllers │ ├── caching.md │ ├── cors-requests.md │ ├── event-handlers.md │ ├── http-method-detection.md │ ├── nesting-controllers.md │ ├── obfuscating-urls.md │ ├── redirecting-users.md │ ├── rendering-content.md │ ├── request-handling.md │ ├── responding-with-multiple-formats.md │ ├── routing.md │ ├── sending-email.md │ ├── sending-files.md │ ├── url-rewriting │ │ ├── README.md │ │ ├── apache.md │ │ ├── iis.md │ │ ├── nginx.md │ │ └── tomcat.md │ ├── using-filters.md │ ├── using-the-flash.md │ └── verification.md │ ├── introduction │ ├── frameworks-and-wheels.md │ ├── manual-installation.md │ ├── readme │ │ ├── beginner-tutorial-hello-database.md │ │ ├── beginner-tutorial-hello-world.md │ │ ├── boxlang-support.md │ │ ├── running-local-development-servers.md │ │ └── tutorial-wheels-ajax-and-you.md │ ├── requirements.md │ ├── screencasts.md │ └── upgrading.md │ ├── plugins │ ├── developing-plugins.md │ ├── installing-and-using-plugins.md │ └── publishing-plugins.md │ ├── project-documentation │ └── overview.md │ ├── stylesheets │ └── gitbook.css │ ├── upgrading │ └── 3.0.0-config-migration.md │ └── working-with-wheels │ ├── configuration-and-defaults.md │ ├── contributing-to-wheels-macos-installer.md │ ├── contributing-to-wheels-vscode-extension.md │ ├── contributing-to-wheels-windows-installer.md │ ├── contributing-to-wheels.md │ ├── conventions.md │ ├── directory-structure.md │ ├── documenting-your-code.md │ ├── submitting-pull-requests.md │ ├── switching-environments.md │ ├── testing-your-application.md │ └── using-the-test-environment.md ├── examples ├── README.md ├── starter-app │ ├── .env.example │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── app │ │ ├── controllers │ │ │ ├── Accounts.cfc │ │ │ ├── Controller.cfc │ │ │ ├── Main.cfc │ │ │ ├── PasswordResets.cfc │ │ │ ├── Register.cfc │ │ │ ├── Sessions.cfc │ │ │ ├── admin │ │ │ │ ├── Auditlogs.cfc │ │ │ │ ├── Permissions.cfc │ │ │ │ ├── Roles.cfc │ │ │ │ ├── Settings.cfc │ │ │ │ ├── UserPermissions.cfc │ │ │ │ └── Users.cfc │ │ │ └── functions │ │ │ │ ├── auth.cfm │ │ │ │ └── filters.cfm │ │ ├── events │ │ │ ├── onabort.cfm │ │ │ ├── onapplicationend.cfm │ │ │ ├── onapplicationstart.cfm │ │ │ ├── onerror.cfm │ │ │ ├── onerror.json.cfm │ │ │ ├── onerror.xml.cfm │ │ │ ├── onmaintenance.cfm │ │ │ ├── onmissingtemplate.cfm │ │ │ ├── onrequestend.cfm │ │ │ ├── onrequeststart.cfm │ │ │ ├── onsessionend.cfm │ │ │ └── onsessionstart.cfm │ │ ├── global │ │ │ ├── auth.cfm │ │ │ ├── functions.cfm │ │ │ ├── install.cfm │ │ │ ├── logging.cfm │ │ │ └── utils.cfm │ │ ├── jobs │ │ │ └── ProcessOrdersJob.cfc │ │ ├── lib │ │ │ └── .keep │ │ ├── mailers │ │ │ └── UserNotificationsMailer.cfc │ │ ├── migrator │ │ │ ├── .keep │ │ │ └── migrations │ │ │ │ ├── 20180519095317_Creates_User_Table.cfc │ │ │ │ ├── 20180519100056_Creates_Roles_Table.cfc │ │ │ │ ├── 20180519100244_Creates_Permissions_Table.cfc │ │ │ │ ├── 20180519100412_Creates_RolePermissions_Table.cfc │ │ │ │ ├── 20180519100428_Creates_UserPermissions_Table.cfc │ │ │ │ ├── 20180519100429_Creates_Settings_Table.cfc │ │ │ │ ├── 20180519100430_Creates_Auditlog_Table.cfc │ │ │ │ ├── 20180519105943_Adds_Default_Roles.cfc │ │ │ │ ├── 20180519105944_Adds_Default_UserAccounts.cfc │ │ │ │ ├── 20180519105945_Adds_Default_Settings.cfc │ │ │ │ ├── 20180519105946_Adds_Default_Permissions.cfc │ │ │ │ ├── 20180519105947_Adds_Default_UserPermissions.cfc │ │ │ │ └── 20180519105948_Adds_Dummy_Auditlogs.cfc │ │ ├── models │ │ │ ├── Auditlog.cfc │ │ │ ├── Model.cfc │ │ │ ├── Permission.cfc │ │ │ ├── Role.cfc │ │ │ ├── RolePermission.cfc │ │ │ ├── Setting.cfc │ │ │ ├── User.cfc │ │ │ ├── UserPermission.cfc │ │ │ └── auth │ │ │ │ ├── LDAP.cfc │ │ │ │ └── Local.cfc │ │ ├── snippets │ │ │ ├── ActionContent.txt │ │ │ ├── ApiControllerContent.txt │ │ │ ├── BoxJSON.txt │ │ │ ├── CRUDContent.txt │ │ │ ├── ConfigAppContent.txt │ │ │ ├── ConfigDataSourceH2Content.txt │ │ │ ├── ConfigReloadPasswordContent.txt │ │ │ ├── ConfigRoutes.txt │ │ │ ├── ControllerContent.txt │ │ │ ├── DBMigrate.txt │ │ │ ├── ModelContent.txt │ │ │ ├── ServerJSON.txt │ │ │ ├── ViewContent.txt │ │ │ ├── WheelsBoxJSON.txt │ │ │ ├── bootstrap │ │ │ │ ├── layout.cfm │ │ │ │ └── settings.cfm │ │ │ ├── crud │ │ │ │ ├── _form.txt │ │ │ │ ├── edit.txt │ │ │ │ ├── index.txt │ │ │ │ ├── new.txt │ │ │ │ └── show.txt │ │ │ ├── dbmigrate │ │ │ │ ├── announce.txt │ │ │ │ ├── blank.txt │ │ │ │ ├── change-column.txt │ │ │ │ ├── change-table.txt │ │ │ │ ├── create-column.txt │ │ │ │ ├── create-index.txt │ │ │ │ ├── create-record.txt │ │ │ │ ├── create-table.txt │ │ │ │ ├── execute.txt │ │ │ │ ├── remove-column.txt │ │ │ │ ├── remove-index.txt │ │ │ │ ├── remove-record.txt │ │ │ │ ├── remove-table.txt │ │ │ │ ├── rename-column.txt │ │ │ │ ├── rename-table.txt │ │ │ │ └── update-record.txt │ │ │ └── tests │ │ │ │ ├── controller.txt │ │ │ │ ├── model.txt │ │ │ │ └── view.txt │ │ └── views │ │ │ ├── accounts │ │ │ ├── edit.cfm │ │ │ ├── resetPassword.cfm │ │ │ └── show.cfm │ │ │ ├── admin │ │ │ ├── auditlogs │ │ │ │ ├── _filter.cfm │ │ │ │ ├── _modal.cfm │ │ │ │ └── index.cfm │ │ │ ├── permissions │ │ │ │ ├── _form.cfm │ │ │ │ ├── edit.cfm │ │ │ │ └── index.cfm │ │ │ ├── roles │ │ │ │ ├── _form.cfm │ │ │ │ ├── edit.cfm │ │ │ │ ├── index.cfm │ │ │ │ └── new.cfm │ │ │ ├── settings │ │ │ │ ├── _form.cfm │ │ │ │ ├── edit.cfm │ │ │ │ └── index.cfm │ │ │ ├── userpermissions │ │ │ │ └── index.cfm │ │ │ └── users │ │ │ │ ├── _filter.cfm │ │ │ │ ├── edit.cfm │ │ │ │ ├── form │ │ │ │ ├── _auth.cfm │ │ │ │ ├── _details.cfm │ │ │ │ └── _role.cfm │ │ │ │ ├── index.cfm │ │ │ │ ├── new.cfm │ │ │ │ └── show.cfm │ │ │ ├── emails │ │ │ ├── _footer.cfm │ │ │ ├── _header.cfm │ │ │ ├── passwordReset.cfm │ │ │ ├── passwordResetAdmin.cfm │ │ │ ├── passwordResetAdminPlain.cfm │ │ │ ├── passwordResetPlain.cfm │ │ │ ├── verify.cfm │ │ │ └── verifyPlain.cfm │ │ │ ├── helpers.cfm │ │ │ ├── layout.cfm │ │ │ ├── layout │ │ │ ├── _footer.cfm │ │ │ └── _navigation.cfm │ │ │ ├── main │ │ │ └── index.cfm │ │ │ ├── passwordresets │ │ │ ├── edit.cfm │ │ │ └── new.cfm │ │ │ ├── register │ │ │ └── new.cfm │ │ │ ├── sessions │ │ │ └── new.cfm │ │ │ └── wheels │ │ │ ├── layout.cfm │ │ │ └── wheels.cfm │ ├── box.json │ ├── config │ │ ├── app.cfm │ │ ├── development │ │ │ └── settings.cfm │ │ ├── environment.cfm │ │ ├── maintenance │ │ │ └── settings.cfm │ │ ├── production │ │ │ └── settings.cfm │ │ ├── routes.cfm │ │ ├── settings.cfm │ │ └── testing │ │ │ └── settings.cfm │ ├── db │ │ └── .keep │ ├── plugins │ │ ├── .keep │ │ ├── FlashMessagesBootstrap-1.0.4.zip │ │ ├── FlashMessagesBootstrap │ │ │ ├── FlashMessagesBootstrap.cfc │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── box.json │ │ │ ├── index.cfm │ │ │ └── stylesheets │ │ │ │ └── bootstrap.min.cfm │ │ ├── authenticateThis-1.0.1.zip │ │ ├── authenticateThis │ │ │ ├── BCrypt.class │ │ │ ├── authenticateThis.cfc │ │ │ ├── box.json │ │ │ ├── index.cfm │ │ │ └── tests │ │ │ │ ├── AuthenticateTest.cfc │ │ │ │ └── _assets │ │ │ │ └── models │ │ │ │ └── dummy.cfc │ │ ├── jsconfirm-1.0.5.zip │ │ └── jsconfirm │ │ │ ├── JSConfirm.cfc │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── box.json │ │ │ └── index.cfm │ ├── public │ │ ├── Application.cfc │ │ ├── files │ │ │ ├── .keep │ │ │ └── webfonts │ │ │ │ ├── fa-brands-400.ttf │ │ │ │ ├── fa-brands-400.woff2 │ │ │ │ ├── fa-regular-400.ttf │ │ │ │ ├── fa-regular-400.woff2 │ │ │ │ ├── fa-solid-900.ttf │ │ │ │ ├── fa-solid-900.woff2 │ │ │ │ ├── fa-v4compatibility.ttf │ │ │ │ └── fa-v4compatibility.woff2 │ │ ├── images │ │ │ ├── .keep │ │ │ └── favicon.ico │ │ ├── index.cfm │ │ ├── javascripts │ │ │ ├── .keep │ │ │ ├── bootstrap.min.js │ │ │ ├── custom.js │ │ │ ├── daterangepicker.js │ │ │ ├── jquery.min.js │ │ │ └── moment.min.js │ │ ├── miscellaneous │ │ │ └── Application.cfc │ │ ├── stylesheets │ │ │ ├── .keep │ │ │ ├── bootstrap.min.css │ │ │ ├── custom.css │ │ │ ├── daterangepicker.css │ │ │ └── fontawesome.min.css │ │ ├── test-mcp.cfm │ │ └── urlrewrite.xml │ ├── server.json │ └── tests │ │ ├── RocketUnit │ │ ├── Test.cfc │ │ ├── functions │ │ │ ├── Auth.cfc │ │ │ ├── Permissions.cfc │ │ │ ├── Utils.cfc │ │ │ └── models │ │ │ │ ├── Auditlog.cfc │ │ │ │ ├── Permission.cfc │ │ │ │ ├── Role.cfc │ │ │ │ └── User.cfc │ │ └── requests │ │ │ ├── Accounts.cfc │ │ │ ├── Main.cfc │ │ │ └── Sessions.cfc │ │ ├── _assets │ │ ├── controllers │ │ │ └── Controller.cfc │ │ ├── files │ │ │ └── .keep │ │ ├── migrator │ │ │ └── migrations │ │ │ │ └── .keep │ │ ├── models │ │ │ └── Model.cfc │ │ ├── plugins │ │ │ └── .keep │ │ └── views │ │ │ ├── .keep │ │ │ ├── helpers.cfm │ │ │ └── layout.cfm │ │ ├── populate.cfm │ │ ├── routes.cfm │ │ ├── runner.cfm │ │ └── specs │ │ └── functions │ │ └── ExampleSpec.cfc └── tweet │ ├── .ai │ ├── CLAUDE.md │ ├── CONTRIBUTION_SUMMARY.md │ ├── MCP-ENFORCEMENT.md │ ├── QUICK_REFERENCE.md │ ├── README.md │ ├── cfml │ │ ├── README.md │ │ ├── advanced │ │ │ └── closures.md │ │ ├── best-practices │ │ │ ├── modern-patterns.md │ │ │ └── performance.md │ │ ├── components │ │ │ ├── component-basics.md │ │ │ ├── functions.md │ │ │ └── properties.md │ │ ├── control-flow │ │ │ ├── conditionals.md │ │ │ ├── exception-handling.md │ │ │ └── loops.md │ │ ├── data-types │ │ │ ├── arrays │ │ │ │ ├── array-creation.md │ │ │ │ ├── array-iteration.md │ │ │ │ └── array-methods.md │ │ │ ├── numbers │ │ │ │ └── numeric-basics.md │ │ │ ├── scopes │ │ │ │ └── variables-scope.md │ │ │ ├── strings │ │ │ │ ├── string-functions.md │ │ │ │ ├── string-interpolation.md │ │ │ │ └── string-literals.md │ │ │ ├── structures │ │ │ │ ├── struct-creation.md │ │ │ │ └── structure-basics.md │ │ │ ├── variable-scopes.md │ │ │ └── variables.md │ │ ├── database │ │ │ └── query-basics.md │ │ └── syntax │ │ │ ├── basic-syntax.md │ │ │ ├── cfscript-vs-tags.md │ │ │ ├── comments.md │ │ │ └── hash-escaping.md │ └── wheels │ │ ├── README.md │ │ ├── cli │ │ └── generators │ │ │ ├── controllers.md │ │ │ ├── migrations.md │ │ │ ├── models.md │ │ │ └── scaffolds.md │ │ ├── communication │ │ └── email-sending.md │ │ ├── configuration │ │ ├── application.md │ │ ├── best-practices.md │ │ ├── environments.md │ │ ├── framework-settings.md │ │ ├── overview.md │ │ ├── routing.md │ │ ├── security.md │ │ └── troubleshooting.md │ │ ├── controllers │ │ ├── api.md │ │ ├── architecture.md │ │ ├── filters.md │ │ ├── filters │ │ │ ├── authentication.md │ │ │ ├── authorization.md │ │ │ └── before-after.md │ │ ├── http-detection.md │ │ ├── model-interactions.md │ │ ├── params │ │ │ └── verification.md │ │ ├── rendering.md │ │ ├── rendering │ │ │ ├── json.md │ │ │ ├── redirects.md │ │ │ └── views.md │ │ ├── security.md │ │ └── testing.md │ │ ├── core-concepts │ │ ├── mvc-architecture │ │ │ ├── controllers.md │ │ │ ├── conventions.md │ │ │ ├── models.md │ │ │ └── views.md │ │ ├── orm │ │ │ ├── mapping-basics.md │ │ │ ├── primary-keys.md │ │ │ ├── properties.md │ │ │ └── tableless-models.md │ │ ├── rails-comparison.md │ │ └── routing │ │ │ ├── basics.md │ │ │ ├── http-methods.md │ │ │ ├── patterns.md │ │ │ └── resources.md │ │ ├── database │ │ ├── associations │ │ │ ├── belongs-to.md │ │ │ ├── has-many.md │ │ │ ├── has-one.md │ │ │ └── nested-properties.md │ │ ├── migrations │ │ │ ├── advanced-operations.md │ │ │ ├── best-practices.md │ │ │ ├── column-types.md │ │ │ ├── creating-migrations.md │ │ │ ├── date-function-issues.md │ │ │ ├── rollback.md │ │ │ └── running-migrations.md │ │ ├── queries │ │ │ ├── creating-records.md │ │ │ ├── deleting-records.md │ │ │ ├── finding-records.md │ │ │ └── updating-records.md │ │ └── validations │ │ │ ├── custom.md │ │ │ ├── format.md │ │ │ ├── presence.md │ │ │ └── uniqueness.md │ │ ├── files │ │ └── downloads.md │ │ ├── integration │ │ └── modern-frontend-stack.md │ │ ├── models │ │ ├── advanced-features.md │ │ ├── advanced-patterns.md │ │ ├── architecture.md │ │ ├── associations.md │ │ ├── best-practices.md │ │ ├── callbacks.md │ │ ├── methods-reference.md │ │ ├── performance.md │ │ ├── testing.md │ │ ├── user-authentication.md │ │ └── validations.md │ │ ├── patterns │ │ ├── authentication.md │ │ ├── crud.md │ │ └── validation-templates.md │ │ ├── security │ │ ├── csrf-protection.md │ │ └── https-detection.md │ │ ├── snippets │ │ ├── controller-snippets.md │ │ └── model-snippets.md │ │ ├── testing │ │ └── browser-automation-patterns.md │ │ ├── troubleshooting │ │ ├── common-errors.md │ │ └── form-helper-errors.md │ │ ├── views │ │ ├── advanced-patterns.md │ │ ├── architecture.md │ │ ├── best-practices.md │ │ ├── data-handling.md │ │ ├── forms.md │ │ ├── helpers.md │ │ ├── helpers │ │ │ ├── custom.md │ │ │ ├── dates.md │ │ │ ├── forms.md │ │ │ └── links.md │ │ ├── layouts.md │ │ ├── layouts │ │ │ ├── content-for.md │ │ │ ├── partials.md │ │ │ └── structure.md │ │ ├── partials.md │ │ ├── query-association-patterns.md │ │ └── testing.md │ │ └── workflows │ │ ├── documentation-loading-strategy.md │ │ ├── enhanced-mcp-develop-specification.md │ │ ├── intelligent-analysis-planning-engine.md │ │ ├── pre-implementation.md │ │ └── template-driven-implementation-patterns.md │ ├── .claude │ ├── .devcontainer │ │ └── devcontainer.json │ ├── commands │ │ └── wheels_execute.md │ ├── settings.local.json │ └── skills │ │ ├── README.md │ │ ├── SKILLS-QUICK-START.md │ │ ├── wheels-anti-pattern-detector │ │ └── SKILL.md │ │ ├── wheels-api-generator │ │ └── SKILL.md │ │ ├── wheels-auth-generator │ │ └── SKILL.md │ │ ├── wheels-controller-generator │ │ └── SKILL.md │ │ ├── wheels-debugging │ │ └── SKILL.md │ │ ├── wheels-deployment │ │ └── SKILL.md │ │ ├── wheels-documentation-generator │ │ └── SKILL.md │ │ ├── wheels-migration-generator │ │ └── SKILL.md │ │ ├── wheels-model-generator │ │ ├── SKILL.md │ │ └── templates │ │ │ ├── basic-model.cfc │ │ │ └── user-authentication-model.cfc │ │ ├── wheels-refactoring │ │ └── SKILL.md │ │ ├── wheels-test-generator │ │ └── SKILL.md │ │ └── wheels-view-generator │ │ └── SKILL.md │ ├── .gitignore │ ├── .opencode │ └── command │ │ └── wheels_execute.md │ ├── .playwright-mcp │ ├── 01_login_page.png │ ├── 02_registration_page.png │ ├── 03_home_feed.png │ ├── 04_tweet_composer_with_text.png │ ├── 05_tweet_posted.png │ ├── 06_tweet_liked.png │ └── 07_user_profile.png │ ├── .vscode │ ├── wheels-test.code-snippets │ └── wheels.code-snippets │ ├── AGENTS.md │ ├── CLAUDE.md │ ├── LICENSE │ ├── README.md │ ├── app │ ├── CLAUDE.md │ ├── controllers │ │ ├── CLAUDE.md │ │ ├── Controller.cfc │ │ ├── Follows.cfc │ │ ├── Likes.cfc │ │ ├── Sessions.cfc │ │ ├── Tweets.cfc │ │ └── Users.cfc │ ├── events │ │ ├── CLAUDE.md │ │ ├── onabort.cfm │ │ ├── onapplicationend.cfm │ │ ├── onapplicationstart.cfm │ │ ├── onerror.cfm │ │ ├── onerror.json.cfm │ │ ├── onerror.xml.cfm │ │ ├── onmaintenance.cfm │ │ ├── onmissingtemplate.cfm │ │ ├── onrequestend.cfm │ │ ├── onrequeststart.cfm │ │ ├── onsessionend.cfm │ │ └── onsessionstart.cfm │ ├── global │ │ ├── CLAUDE.md │ │ └── functions.cfm │ ├── jobs │ │ ├── CLAUDE.md │ │ └── ProcessOrdersJob.cfc │ ├── lib │ │ ├── .keep │ │ └── CLAUDE.md │ ├── mailers │ │ ├── CLAUDE.md │ │ └── UserNotificationsMailer.cfc │ ├── migrator │ │ ├── .keep │ │ ├── CLAUDE.md │ │ └── migrations │ │ │ ├── .keep │ │ │ ├── 20251021133355_CreateUsersTable.cfc │ │ │ ├── 20251021133401_CreateTweetsTable.cfc │ │ │ ├── 20251021133404_CreateLikesTable.cfc │ │ │ └── 20251021133406_CreateFollowsTable.cfc │ ├── models │ │ ├── CLAUDE.md │ │ ├── Follow.cfc │ │ ├── Like.cfc │ │ ├── Model.cfc │ │ ├── Tweet.cfc │ │ └── User.cfc │ ├── snippets │ │ ├── ActionContent.txt │ │ ├── ApiControllerContent.txt │ │ ├── BoxJSON.txt │ │ ├── CLAUDE.md │ │ ├── CRUDContent.txt │ │ ├── ConfigAppContent.txt │ │ ├── ConfigDataSourceH2Content.txt │ │ ├── ConfigReloadPasswordContent.txt │ │ ├── ConfigRoutes.txt │ │ ├── ControllerContent.txt │ │ ├── DBMigrate.txt │ │ ├── ModelContent.txt │ │ ├── ServerJSON.txt │ │ ├── ViewContent.txt │ │ ├── WheelsBoxJSON.txt │ │ ├── bootstrap │ │ │ ├── layout.cfm │ │ │ └── settings.cfm │ │ ├── crud │ │ │ ├── _form.txt │ │ │ ├── edit.txt │ │ │ ├── index.txt │ │ │ ├── new.txt │ │ │ └── show.txt │ │ ├── dbmigrate │ │ │ ├── announce.txt │ │ │ ├── blank.txt │ │ │ ├── change-column.txt │ │ │ ├── change-table.txt │ │ │ ├── create-column.txt │ │ │ ├── create-index.txt │ │ │ ├── create-record.txt │ │ │ ├── create-table.txt │ │ │ ├── execute.txt │ │ │ ├── remove-column.txt │ │ │ ├── remove-index.txt │ │ │ ├── remove-record.txt │ │ │ ├── remove-table.txt │ │ │ ├── rename-column.txt │ │ │ ├── rename-table.txt │ │ │ └── update-record.txt │ │ ├── mcp-server.js.txt │ │ └── tests │ │ │ ├── controller.txt │ │ │ ├── model.txt │ │ │ └── view.txt │ └── views │ │ ├── CLAUDE.md │ │ ├── helpers.cfm │ │ ├── layout.cfm │ │ ├── sessions │ │ └── new.cfm │ │ ├── tweets │ │ └── index.cfm │ │ ├── usernotificationsmailer │ │ └── sendEmail.cfm │ │ └── users │ │ ├── edit.cfm │ │ ├── new.cfm │ │ └── show.cfm │ ├── box.json │ ├── config │ ├── CLAUDE.md │ ├── app.cfm │ ├── development │ │ └── settings.cfm │ ├── environment.cfm │ ├── maintenance │ │ └── settings.cfm │ ├── production │ │ └── settings.cfm │ ├── routes.cfm │ ├── settings.cfm │ └── testing │ │ └── settings.cfm │ ├── plugins │ ├── .keep │ └── CLAUDE.md │ ├── public │ ├── .htaccess │ ├── Application.cfc │ ├── CLAUDE.md │ ├── files │ │ └── .keep │ ├── images │ │ └── .keep │ ├── index.bxm │ ├── index.cfm │ ├── javascripts │ │ └── .keep │ ├── miscellaneous │ │ └── Application.cfc │ ├── stylesheets │ │ └── .keep │ └── urlrewrite.xml │ ├── server.json │ ├── tests │ ├── CLAUDE.md │ ├── _assets │ │ ├── controllers │ │ │ └── Controller.cfc │ │ ├── files │ │ │ └── .keep │ │ ├── migrator │ │ │ └── migrations │ │ │ │ └── .keep │ │ ├── models │ │ │ └── Model.cfc │ │ ├── plugins │ │ │ └── .keep │ │ └── views │ │ │ ├── .keep │ │ │ ├── helpers.cfm │ │ │ └── layout.cfm │ ├── populate.cfm │ ├── routes.cfm │ ├── runner.cfm │ └── specs │ │ └── functions │ │ └── ExampleSpec.cfc │ ├── vendor │ └── .keep │ └── wheels-base-template-3.0.0-SNAPSHOT.rc.1+1053-20251021194426 ├── server.json ├── templates └── base │ ├── box.json │ └── src │ ├── .claude │ └── settings.local.json │ ├── AGENTS.md │ ├── CFConfig.json │ ├── CLAUDE.md │ ├── app │ ├── CLAUDE.md │ ├── controllers │ │ ├── CLAUDE.md │ │ └── Controller.cfc │ ├── events │ │ ├── CLAUDE.md │ │ ├── onabort.cfm │ │ ├── onapplicationend.cfm │ │ ├── onapplicationstart.cfm │ │ ├── onerror.cfm │ │ ├── onerror.json.cfm │ │ ├── onerror.xml.cfm │ │ ├── onmaintenance.cfm │ │ ├── onmissingtemplate.cfm │ │ ├── onrequestend.cfm │ │ ├── onrequeststart.cfm │ │ ├── onsessionend.cfm │ │ └── onsessionstart.cfm │ ├── global │ │ ├── CLAUDE.md │ │ └── functions.cfm │ ├── jobs │ │ ├── CLAUDE.md │ │ └── ProcessOrdersJob.cfc │ ├── lib │ │ ├── .keep │ │ └── CLAUDE.md │ ├── mailers │ │ ├── CLAUDE.md │ │ └── UserNotificationsMailer.cfc │ ├── migrator │ │ ├── .keep │ │ ├── CLAUDE.md │ │ └── migrations │ │ │ └── .keep │ ├── models │ │ ├── CLAUDE.md │ │ └── Model.cfc │ ├── snippets │ │ ├── ActionContent.txt │ │ ├── ApiControllerContent.txt │ │ ├── BoxJSON.txt │ │ ├── CLAUDE.md │ │ ├── CRUDContent.txt │ │ ├── ConfigAppContent.txt │ │ ├── ConfigDataSourceH2Content.txt │ │ ├── ConfigReloadPasswordContent.txt │ │ ├── ConfigRoutes.txt │ │ ├── ControllerContent.txt │ │ ├── DBMigrate.txt │ │ ├── McpConfig.json │ │ ├── ModelContent.txt │ │ ├── OpenCodeConfig.json │ │ ├── ServerJSON.txt │ │ ├── ViewContent.txt │ │ ├── WheelsBoxJSON.txt │ │ ├── bootstrap │ │ │ ├── layout.cfm │ │ │ └── settings.cfm │ │ ├── crud │ │ │ ├── _form.txt │ │ │ ├── edit.txt │ │ │ ├── index.txt │ │ │ ├── new.txt │ │ │ └── show.txt │ │ ├── dbmigrate │ │ │ ├── announce.txt │ │ │ ├── blank.txt │ │ │ ├── change-column.txt │ │ │ ├── change-table.txt │ │ │ ├── create-column.txt │ │ │ ├── create-index.txt │ │ │ ├── create-record.txt │ │ │ ├── create-table.txt │ │ │ ├── execute.txt │ │ │ ├── remove-column.txt │ │ │ ├── remove-index.txt │ │ │ ├── remove-record.txt │ │ │ ├── remove-table.txt │ │ │ ├── rename-column.txt │ │ │ ├── rename-table.txt │ │ │ └── update-record.txt │ │ ├── mcp-server.js.txt │ │ └── tests │ │ │ ├── controller.txt │ │ │ ├── model.txt │ │ │ └── view.txt │ └── views │ │ ├── CLAUDE.md │ │ ├── helpers.cfm │ │ ├── layout.cfm │ │ └── usernotificationsmailer │ │ └── sendEmail.cfm │ ├── box.json │ ├── config │ ├── CLAUDE.md │ ├── app.cfm │ ├── development │ │ └── settings.cfm │ ├── environment.cfm │ ├── maintenance │ │ └── settings.cfm │ ├── production │ │ └── settings.cfm │ ├── routes.cfm │ ├── settings.cfm │ └── testing │ │ └── settings.cfm │ ├── db │ └── .keep │ ├── plugins │ ├── .keep │ └── CLAUDE.md │ ├── public │ ├── .htaccess │ ├── Application.cfc │ ├── CLAUDE.md │ ├── files │ │ └── .keep │ ├── images │ │ └── .keep │ ├── index.bxm │ ├── index.cfm │ ├── javascripts │ │ └── .keep │ ├── miscellaneous │ │ └── Application.cfc │ ├── stylesheets │ │ └── .keep │ └── urlrewrite.xml │ ├── server.json │ ├── tests │ ├── CLAUDE.md │ ├── _assets │ │ ├── controllers │ │ │ └── Controller.cfc │ │ ├── files │ │ │ └── .keep │ │ ├── migrator │ │ │ └── migrations │ │ │ │ └── .keep │ │ ├── models │ │ │ └── Model.cfc │ │ ├── plugins │ │ │ └── .keep │ │ └── views │ │ │ ├── .keep │ │ │ ├── helpers.cfm │ │ │ └── layout.cfm │ ├── populate.cfm │ ├── routes.cfm │ ├── runner.cfm │ └── specs │ │ └── functions │ │ └── ExampleSpec.cfc │ └── vendor │ └── .keep ├── test-artifacts └── test-results.zip ├── tests ├── CLAUDE.md ├── README.md ├── _assets │ ├── controllers │ │ └── Controller.cfc │ ├── files │ │ └── .keep │ ├── migrator │ │ └── migrations │ │ │ └── .keep │ ├── models │ │ └── Model.cfc │ ├── plugins │ │ └── .keep │ └── views │ │ ├── .keep │ │ ├── helpers.cfm │ │ └── layout.cfm ├── populate.cfm ├── routes.cfm ├── runner.cfm └── specs │ └── functions │ └── ExampleSpec.cfc └── tools ├── build ├── base │ ├── .gitignore │ ├── .mcp.json │ ├── .opencode.json │ ├── README.md │ ├── box.json │ ├── config │ │ ├── app.cfm │ │ └── settings.cfm │ └── server.json ├── cli │ ├── README.md │ └── box.json ├── core │ ├── README.md │ └── box.json ├── lib │ └── ant-contrib-1.0b3.jar └── scripts │ ├── README.md │ ├── build-base.sh │ ├── build-cli.sh │ ├── build-core.sh │ ├── build-starterApp.sh │ ├── prepare-base.sh │ ├── prepare-cli.sh │ ├── prepare-core.sh │ ├── prepare-starterApp.sh │ ├── publish-to-forgebox.sh │ └── test-forgebox-package.sh ├── docker ├── .gitignore ├── Oracle │ └── 01-configure-cursors.sql ├── README.md ├── adobe2018 │ ├── CFConfig-actions.json │ ├── CFConfig.json │ ├── Dockerfile │ ├── box.json │ ├── lib │ │ └── .keep │ ├── server.json │ └── settings.cfm ├── adobe2021 │ ├── CFConfig-actions.json │ ├── CFConfig.json │ ├── Dockerfile │ ├── box.json │ ├── lib │ │ ├── .keep │ │ └── sqlite-jdbc-3.50.3.0.jar │ ├── server.json │ └── settings.cfm ├── adobe2023 │ ├── CFConfig-actions.json │ ├── CFConfig.json │ ├── Dockerfile │ ├── box.json │ ├── lib │ │ ├── .keep │ │ └── sqlite-jdbc-3.50.3.0.jar │ ├── server.json │ └── settings.cfm ├── adobe2025 │ ├── CFConfig-actions.json │ ├── CFConfig.json │ ├── Dockerfile │ ├── box.json │ ├── lib │ │ ├── .keep │ │ └── sqlite-jdbc-3.50.3.0.jar │ ├── server.json │ └── settings.cfm ├── boxlang │ ├── CFConfig-actions.json │ ├── CFConfig.json │ ├── Dockerfile │ ├── box.json │ ├── lib │ │ └── .keep │ ├── server.json │ └── settings.cfm ├── github │ ├── README.md │ ├── Tasks.cfc │ ├── core-tests.sh │ ├── db-up.sh │ ├── functions.sh │ ├── server-up.sh │ └── wait-for-it.sh ├── lucee5 │ ├── CFConfig-actions.json │ ├── CFConfig.json │ ├── Dockerfile │ ├── box.json │ ├── lib │ │ └── .keep │ ├── server.json │ └── settings.cfm ├── lucee6 │ ├── CFConfig-actions.json │ ├── CFConfig.json │ ├── Dockerfile │ ├── box.json │ ├── lib │ │ └── .keep │ ├── server.json │ └── settings.cfm ├── lucee7 │ ├── CFConfig-actions.json │ ├── CFConfig.json │ ├── Dockerfile │ ├── box.json │ ├── server.json │ └── settings.cfm ├── sqlserver │ ├── APPLE_SILICON.md │ ├── Dockerfile │ ├── Dockerfile_CICD │ ├── README.md │ └── init-db.sh └── testui │ ├── .env │ ├── .gitignore │ ├── DEVELOPMENT.md │ ├── DOCKER-INTEGRATION.md │ ├── DOCKER-README.md │ ├── DOCKER-USAGE.md │ ├── Dockerfile │ ├── Dockerfile.dev │ ├── IMPLEMENTATION-NOTES.md │ ├── README.md │ ├── docker-build.sh │ ├── docker-compose.dev.yml │ ├── docker-compose.test.yml │ ├── docker-entrypoint.sh │ ├── docker-test.sh │ ├── index.html │ ├── nginx.conf │ ├── package-lock.json │ ├── package.json │ ├── proxy_buffer_size.conf │ ├── public │ ├── error.html │ ├── favicon.ico │ ├── wheels_logo.png │ ├── wheels_logo_transparancy_black.png │ └── wheels_logo_transparancy_white.png │ ├── src │ ├── App.vue │ ├── assets │ │ └── main.css │ ├── components │ │ ├── PreflightStatus.vue │ │ ├── StatusBadge.vue │ │ ├── TestResultItem.vue │ │ └── TestStats.vue │ ├── env.d.ts │ ├── main.ts │ ├── router │ │ └── index.ts │ ├── services │ │ ├── docker.service.ts │ │ ├── preflight.service.ts │ │ └── test.service.ts │ ├── shims-vue.d.ts │ ├── stores │ │ ├── databaseStore.ts │ │ ├── engineStore.ts │ │ ├── testStore.ts │ │ └── themeStore.ts │ ├── types.ts │ ├── types │ │ └── index.ts │ ├── utils │ │ ├── api.ts │ │ └── theme.ts │ └── views │ │ ├── HomeView.vue │ │ └── TestsView.vue │ ├── supervisord.conf │ ├── tsconfig.json │ ├── tsconfig.node.json │ └── vite.config.ts ├── installer ├── macos │ ├── .gitignore │ ├── Info.plist │ ├── README.md │ ├── WheelsInstallerApp.swift │ ├── assets │ │ └── wheels_logo.icns │ ├── build-swift.sh │ ├── create-dmg.sh │ ├── install-wheels │ └── installer │ │ └── wheels-installer.dmg └── windows │ ├── README.md │ ├── assets │ └── wheels_logo.ico │ ├── install-wheels.iss │ ├── install-wheels.ps1 │ └── installer │ └── wheels-installer.exe ├── scripts └── integration-test.sh ├── vscode-ext ├── .gitignore ├── .vscodeignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── assets │ ├── demos │ │ ├── functions-snippets-demo-1.gif │ │ ├── functions-snippets-demo-2.gif │ │ ├── go-to-definition-demo-1.gif │ │ ├── go-to-definition-demo-2.gif │ │ ├── hover-docs-demo.gif │ │ ├── parameter-hints-demo.gif │ │ ├── parameter-validation-demo.gif │ │ ├── quick-code-demo-1.gif │ │ ├── quick-code-demo-2.gif │ │ ├── scaffolding-demo-1.gif │ │ ├── scaffolding-demo-2.gif │ │ ├── scaffolding-demo-3.gif │ │ └── scaffolding-demo-4.gif │ ├── templates │ │ ├── controller.cfc │ │ ├── model.cfc │ │ ├── view-edit.cfm │ │ ├── view-index.cfm │ │ ├── view-new.cfm │ │ └── view-show.cfm │ └── wheels_logo.jpg ├── package.json ├── snippets │ ├── wheels-api.json │ └── wheels.code-snippets └── src │ └── extension.js └── workspace └── .keep /.ai/CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/.ai/CLAUDE.md -------------------------------------------------------------------------------- /.ai/CONTRIBUTION_SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/.ai/CONTRIBUTION_SUMMARY.md -------------------------------------------------------------------------------- /.ai/MCP-ENFORCEMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/.ai/MCP-ENFORCEMENT.md -------------------------------------------------------------------------------- /.ai/QUICK_REFERENCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/.ai/QUICK_REFERENCE.md -------------------------------------------------------------------------------- /.ai/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/.ai/README.md -------------------------------------------------------------------------------- /.ai/cfml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/.ai/cfml/README.md -------------------------------------------------------------------------------- /.ai/cfml/advanced/closures.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/.ai/cfml/advanced/closures.md -------------------------------------------------------------------------------- /.ai/cfml/best-practices/modern-patterns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/.ai/cfml/best-practices/modern-patterns.md -------------------------------------------------------------------------------- /.ai/cfml/best-practices/performance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/.ai/cfml/best-practices/performance.md -------------------------------------------------------------------------------- /.ai/cfml/components/component-basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/.ai/cfml/components/component-basics.md -------------------------------------------------------------------------------- /.ai/cfml/components/functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/.ai/cfml/components/functions.md -------------------------------------------------------------------------------- /.ai/cfml/components/properties.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/.ai/cfml/components/properties.md -------------------------------------------------------------------------------- /.ai/cfml/control-flow/conditionals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/.ai/cfml/control-flow/conditionals.md -------------------------------------------------------------------------------- /.ai/cfml/control-flow/loops.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/.ai/cfml/control-flow/loops.md -------------------------------------------------------------------------------- /.ai/cfml/data-types/variable-scopes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/.ai/cfml/data-types/variable-scopes.md -------------------------------------------------------------------------------- /.ai/cfml/data-types/variables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/.ai/cfml/data-types/variables.md -------------------------------------------------------------------------------- /.ai/cfml/database/query-basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/.ai/cfml/database/query-basics.md -------------------------------------------------------------------------------- /.ai/cfml/syntax/basic-syntax.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/.ai/cfml/syntax/basic-syntax.md -------------------------------------------------------------------------------- /.ai/cfml/syntax/cfscript-vs-tags.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/.ai/cfml/syntax/cfscript-vs-tags.md -------------------------------------------------------------------------------- /.ai/cfml/syntax/comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/.ai/cfml/syntax/comments.md -------------------------------------------------------------------------------- /.ai/cfml/syntax/hash-escaping.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/.ai/cfml/syntax/hash-escaping.md -------------------------------------------------------------------------------- /.ai/wheels/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/.ai/wheels/README.md -------------------------------------------------------------------------------- /.ai/wheels/cli/generators/controllers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/.ai/wheels/cli/generators/controllers.md -------------------------------------------------------------------------------- /.ai/wheels/cli/generators/migrations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/.ai/wheels/cli/generators/migrations.md -------------------------------------------------------------------------------- /.ai/wheels/cli/generators/models.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/.ai/wheels/cli/generators/models.md -------------------------------------------------------------------------------- /.ai/wheels/cli/generators/scaffolds.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/.ai/wheels/cli/generators/scaffolds.md -------------------------------------------------------------------------------- /.ai/wheels/communication/email-sending.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/.ai/wheels/communication/email-sending.md -------------------------------------------------------------------------------- /.ai/wheels/configuration/application.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/.ai/wheels/configuration/application.md -------------------------------------------------------------------------------- /.ai/wheels/configuration/best-practices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/.ai/wheels/configuration/best-practices.md -------------------------------------------------------------------------------- /.ai/wheels/configuration/environments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/.ai/wheels/configuration/environments.md -------------------------------------------------------------------------------- /.ai/wheels/configuration/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/.ai/wheels/configuration/overview.md -------------------------------------------------------------------------------- /.ai/wheels/configuration/routing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/.ai/wheels/configuration/routing.md -------------------------------------------------------------------------------- /.ai/wheels/configuration/security.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/.ai/wheels/configuration/security.md -------------------------------------------------------------------------------- /.ai/wheels/controllers/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/.ai/wheels/controllers/api.md -------------------------------------------------------------------------------- /.ai/wheels/controllers/architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/.ai/wheels/controllers/architecture.md -------------------------------------------------------------------------------- /.ai/wheels/controllers/filters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/.ai/wheels/controllers/filters.md -------------------------------------------------------------------------------- /.ai/wheels/controllers/http-detection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/.ai/wheels/controllers/http-detection.md -------------------------------------------------------------------------------- /.ai/wheels/controllers/rendering.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/.ai/wheels/controllers/rendering.md -------------------------------------------------------------------------------- /.ai/wheels/controllers/rendering/json.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/.ai/wheels/controllers/rendering/json.md -------------------------------------------------------------------------------- /.ai/wheels/controllers/rendering/views.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/.ai/wheels/controllers/rendering/views.md -------------------------------------------------------------------------------- /.ai/wheels/controllers/security.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/.ai/wheels/controllers/security.md -------------------------------------------------------------------------------- /.ai/wheels/controllers/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/.ai/wheels/controllers/testing.md -------------------------------------------------------------------------------- /.ai/wheels/core-concepts/orm/properties.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/.ai/wheels/core-concepts/orm/properties.md -------------------------------------------------------------------------------- /.ai/wheels/core-concepts/routing/basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/.ai/wheels/core-concepts/routing/basics.md -------------------------------------------------------------------------------- /.ai/wheels/database/migrations/rollback.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/.ai/wheels/database/migrations/rollback.md -------------------------------------------------------------------------------- /.ai/wheels/database/validations/custom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/.ai/wheels/database/validations/custom.md -------------------------------------------------------------------------------- /.ai/wheels/database/validations/format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/.ai/wheels/database/validations/format.md -------------------------------------------------------------------------------- /.ai/wheels/files/downloads.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/.ai/wheels/files/downloads.md -------------------------------------------------------------------------------- /.ai/wheels/models/advanced-features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/.ai/wheels/models/advanced-features.md -------------------------------------------------------------------------------- /.ai/wheels/models/advanced-patterns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/.ai/wheels/models/advanced-patterns.md -------------------------------------------------------------------------------- /.ai/wheels/models/architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/.ai/wheels/models/architecture.md -------------------------------------------------------------------------------- /.ai/wheels/models/associations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/.ai/wheels/models/associations.md -------------------------------------------------------------------------------- /.ai/wheels/models/best-practices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/.ai/wheels/models/best-practices.md -------------------------------------------------------------------------------- /.ai/wheels/models/callbacks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/.ai/wheels/models/callbacks.md -------------------------------------------------------------------------------- /.ai/wheels/models/methods-reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/.ai/wheels/models/methods-reference.md -------------------------------------------------------------------------------- /.ai/wheels/models/performance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/.ai/wheels/models/performance.md -------------------------------------------------------------------------------- /.ai/wheels/models/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/.ai/wheels/models/testing.md -------------------------------------------------------------------------------- /.ai/wheels/models/user-authentication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/.ai/wheels/models/user-authentication.md -------------------------------------------------------------------------------- /.ai/wheels/models/validations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/.ai/wheels/models/validations.md -------------------------------------------------------------------------------- /.ai/wheels/patterns/authentication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/.ai/wheels/patterns/authentication.md -------------------------------------------------------------------------------- /.ai/wheels/patterns/crud.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/.ai/wheels/patterns/crud.md -------------------------------------------------------------------------------- /.ai/wheels/security/csrf-protection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/.ai/wheels/security/csrf-protection.md -------------------------------------------------------------------------------- /.ai/wheels/security/https-detection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/.ai/wheels/security/https-detection.md -------------------------------------------------------------------------------- /.ai/wheels/snippets/controller-snippets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/.ai/wheels/snippets/controller-snippets.md -------------------------------------------------------------------------------- /.ai/wheels/snippets/model-snippets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/.ai/wheels/snippets/model-snippets.md -------------------------------------------------------------------------------- /.ai/wheels/views/advanced-patterns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/.ai/wheels/views/advanced-patterns.md -------------------------------------------------------------------------------- /.ai/wheels/views/architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/.ai/wheels/views/architecture.md -------------------------------------------------------------------------------- /.ai/wheels/views/best-practices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/.ai/wheels/views/best-practices.md -------------------------------------------------------------------------------- /.ai/wheels/views/data-handling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/.ai/wheels/views/data-handling.md -------------------------------------------------------------------------------- /.ai/wheels/views/forms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/.ai/wheels/views/forms.md -------------------------------------------------------------------------------- /.ai/wheels/views/helpers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/.ai/wheels/views/helpers.md -------------------------------------------------------------------------------- /.ai/wheels/views/helpers/custom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/.ai/wheels/views/helpers/custom.md -------------------------------------------------------------------------------- /.ai/wheels/views/helpers/dates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/.ai/wheels/views/helpers/dates.md -------------------------------------------------------------------------------- /.ai/wheels/views/helpers/forms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/.ai/wheels/views/helpers/forms.md -------------------------------------------------------------------------------- /.ai/wheels/views/helpers/links.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/.ai/wheels/views/helpers/links.md -------------------------------------------------------------------------------- /.ai/wheels/views/layouts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/.ai/wheels/views/layouts.md -------------------------------------------------------------------------------- /.ai/wheels/views/layouts/content-for.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/.ai/wheels/views/layouts/content-for.md -------------------------------------------------------------------------------- /.ai/wheels/views/layouts/partials.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/.ai/wheels/views/layouts/partials.md -------------------------------------------------------------------------------- /.ai/wheels/views/layouts/structure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/.ai/wheels/views/layouts/structure.md -------------------------------------------------------------------------------- /.ai/wheels/views/partials.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/.ai/wheels/views/partials.md -------------------------------------------------------------------------------- /.ai/wheels/views/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/.ai/wheels/views/testing.md -------------------------------------------------------------------------------- /.ai/wheels/workflows/pre-implementation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/.ai/wheels/workflows/pre-implementation.md -------------------------------------------------------------------------------- /.cfformat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/.cfformat.json -------------------------------------------------------------------------------- /.claude/.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/.claude/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.claude/commands/wheels_execute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/.claude/commands/wheels_execute.md -------------------------------------------------------------------------------- /.claude/settings.local.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/.claude/settings.local.json -------------------------------------------------------------------------------- /.claude/skills/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/.claude/skills/README.md -------------------------------------------------------------------------------- /.claude/skills/SKILLS-QUICK-START.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/.claude/skills/SKILLS-QUICK-START.md -------------------------------------------------------------------------------- /.claude/skills/wheels-debugging/SKILL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/.claude/skills/wheels-debugging/SKILL.md -------------------------------------------------------------------------------- /.claude/skills/wheels-deployment/SKILL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/.claude/skills/wheels-deployment/SKILL.md -------------------------------------------------------------------------------- /.claude/skills/wheels-refactoring/SKILL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/.claude/skills/wheels-refactoring/SKILL.md -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/.env -------------------------------------------------------------------------------- /.gitbook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/.gitbook.yaml -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/slack.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/.github/slack.yml -------------------------------------------------------------------------------- /.github/workflows/build-docs.yml.hold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/.github/workflows/build-docs.yml.hold -------------------------------------------------------------------------------- /.github/workflows/docs-sync.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/.github/workflows/docs-sync.yml -------------------------------------------------------------------------------- /.github/workflows/pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/.github/workflows/pr.yml -------------------------------------------------------------------------------- /.github/workflows/release-candidate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/.github/workflows/release-candidate.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/snapshot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/.github/workflows/snapshot.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/.github/workflows/tests.yml.keep -------------------------------------------------------------------------------- /.github/workflows/version-bump.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/.github/workflows/version-bump.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/.gitignore -------------------------------------------------------------------------------- /.opencode/command/wheels_execute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/.opencode/command/wheels_execute.md -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/wheels-test.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/.vscode/wheels-test.code-snippets -------------------------------------------------------------------------------- /.vscode/wheels.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/.vscode/wheels.code-snippets -------------------------------------------------------------------------------- /AGENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/AGENTS.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CLAUDE-SKILLS-ANALYSIS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/CLAUDE-SKILLS-ANALYSIS.md -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/LICENSE -------------------------------------------------------------------------------- /MONOREPO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/MONOREPO.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE-CANDIDATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/RELEASE-CANDIDATE.md -------------------------------------------------------------------------------- /SKILLS-IMPLEMENTATION-SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/SKILLS-IMPLEMENTATION-SUMMARY.md -------------------------------------------------------------------------------- /cli/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/.gitignore -------------------------------------------------------------------------------- /cli/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/CHANGELOG -------------------------------------------------------------------------------- /cli/CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/CLAUDE.md -------------------------------------------------------------------------------- /cli/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/LICENSE -------------------------------------------------------------------------------- /cli/PR-INSTRUCTIONS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/PR-INSTRUCTIONS.md -------------------------------------------------------------------------------- /cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/README.md -------------------------------------------------------------------------------- /cli/WHEELS-CLI-ROADMAP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/WHEELS-CLI-ROADMAP.md -------------------------------------------------------------------------------- /cli/docs/CONFIG-COMMANDS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/docs/CONFIG-COMMANDS.md -------------------------------------------------------------------------------- /cli/src/ModuleConfig.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/ModuleConfig.cfc -------------------------------------------------------------------------------- /cli/src/commands/wheels/about.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/commands/wheels/about.cfc -------------------------------------------------------------------------------- /cli/src/commands/wheels/analyze/code.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/commands/wheels/analyze/code.cfc -------------------------------------------------------------------------------- /cli/src/commands/wheels/assets/clean.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/commands/wheels/assets/clean.cfc -------------------------------------------------------------------------------- /cli/src/commands/wheels/assets/clobber.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/commands/wheels/assets/clobber.cfc -------------------------------------------------------------------------------- /cli/src/commands/wheels/base.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/commands/wheels/base.cfc -------------------------------------------------------------------------------- /cli/src/commands/wheels/benchmark.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/commands/wheels/benchmark.cfc -------------------------------------------------------------------------------- /cli/src/commands/wheels/cache/clear.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/commands/wheels/cache/clear.cfc -------------------------------------------------------------------------------- /cli/src/commands/wheels/cleanup/logs.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/commands/wheels/cleanup/logs.cfc -------------------------------------------------------------------------------- /cli/src/commands/wheels/cleanup/tmp.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/commands/wheels/cleanup/tmp.cfc -------------------------------------------------------------------------------- /cli/src/commands/wheels/config/check.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/commands/wheels/config/check.cfc -------------------------------------------------------------------------------- /cli/src/commands/wheels/config/diff.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/commands/wheels/config/diff.cfc -------------------------------------------------------------------------------- /cli/src/commands/wheels/config/dump.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/commands/wheels/config/dump.cfc -------------------------------------------------------------------------------- /cli/src/commands/wheels/config/env.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/commands/wheels/config/env.cfc -------------------------------------------------------------------------------- /cli/src/commands/wheels/config/list.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/commands/wheels/config/list.cfc -------------------------------------------------------------------------------- /cli/src/commands/wheels/config/set.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/commands/wheels/config/set.cfc -------------------------------------------------------------------------------- /cli/src/commands/wheels/db/create.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/commands/wheels/db/create.cfc -------------------------------------------------------------------------------- /cli/src/commands/wheels/db/drop.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/commands/wheels/db/drop.cfc -------------------------------------------------------------------------------- /cli/src/commands/wheels/db/dump.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/commands/wheels/db/dump.cfc -------------------------------------------------------------------------------- /cli/src/commands/wheels/db/reset.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/commands/wheels/db/reset.cfc -------------------------------------------------------------------------------- /cli/src/commands/wheels/db/restore.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/commands/wheels/db/restore.cfc -------------------------------------------------------------------------------- /cli/src/commands/wheels/db/rollback.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/commands/wheels/db/rollback.cfc -------------------------------------------------------------------------------- /cli/src/commands/wheels/db/schema.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/commands/wheels/db/schema.cfc -------------------------------------------------------------------------------- /cli/src/commands/wheels/db/seed.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/commands/wheels/db/seed.cfc -------------------------------------------------------------------------------- /cli/src/commands/wheels/db/setup.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/commands/wheels/db/setup.cfc -------------------------------------------------------------------------------- /cli/src/commands/wheels/db/shell.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/commands/wheels/db/shell.cfc -------------------------------------------------------------------------------- /cli/src/commands/wheels/db/status.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/commands/wheels/db/status.cfc -------------------------------------------------------------------------------- /cli/src/commands/wheels/db/version.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/commands/wheels/db/version.cfc -------------------------------------------------------------------------------- /cli/src/commands/wheels/dbmigrate/down.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/commands/wheels/dbmigrate/down.cfc -------------------------------------------------------------------------------- /cli/src/commands/wheels/dbmigrate/exec.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/commands/wheels/dbmigrate/exec.cfc -------------------------------------------------------------------------------- /cli/src/commands/wheels/dbmigrate/info.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/commands/wheels/dbmigrate/info.cfc -------------------------------------------------------------------------------- /cli/src/commands/wheels/dbmigrate/up.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/commands/wheels/dbmigrate/up.cfc -------------------------------------------------------------------------------- /cli/src/commands/wheels/deploy.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/commands/wheels/deploy.cfc -------------------------------------------------------------------------------- /cli/src/commands/wheels/deploy/audit.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/commands/wheels/deploy/audit.cfc -------------------------------------------------------------------------------- /cli/src/commands/wheels/deploy/base.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/commands/wheels/deploy/base.cfc -------------------------------------------------------------------------------- /cli/src/commands/wheels/deploy/exec.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/commands/wheels/deploy/exec.cfc -------------------------------------------------------------------------------- /cli/src/commands/wheels/deploy/hooks.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/commands/wheels/deploy/hooks.cfc -------------------------------------------------------------------------------- /cli/src/commands/wheels/deploy/init.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/commands/wheels/deploy/init.cfc -------------------------------------------------------------------------------- /cli/src/commands/wheels/deploy/lock.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/commands/wheels/deploy/lock.cfc -------------------------------------------------------------------------------- /cli/src/commands/wheels/deploy/logs.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/commands/wheels/deploy/logs.cfc -------------------------------------------------------------------------------- /cli/src/commands/wheels/deploy/proxy.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/commands/wheels/deploy/proxy.cfc -------------------------------------------------------------------------------- /cli/src/commands/wheels/deploy/push.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/commands/wheels/deploy/push.cfc -------------------------------------------------------------------------------- /cli/src/commands/wheels/deploy/secrets.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/commands/wheels/deploy/secrets.cfc -------------------------------------------------------------------------------- /cli/src/commands/wheels/deploy/setup.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/commands/wheels/deploy/setup.cfc -------------------------------------------------------------------------------- /cli/src/commands/wheels/deploy/status.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/commands/wheels/deploy/status.cfc -------------------------------------------------------------------------------- /cli/src/commands/wheels/deploy/stop.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/commands/wheels/deploy/stop.cfc -------------------------------------------------------------------------------- /cli/src/commands/wheels/deps.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/commands/wheels/deps.cfc -------------------------------------------------------------------------------- /cli/src/commands/wheels/deptree.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/commands/wheels/deptree.cfc -------------------------------------------------------------------------------- /cli/src/commands/wheels/destroy.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/commands/wheels/destroy.cfc -------------------------------------------------------------------------------- /cli/src/commands/wheels/docker/deploy.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/commands/wheels/docker/deploy.cfc -------------------------------------------------------------------------------- /cli/src/commands/wheels/docker/init.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/commands/wheels/docker/init.cfc -------------------------------------------------------------------------------- /cli/src/commands/wheels/docs/generate.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/commands/wheels/docs/generate.cfc -------------------------------------------------------------------------------- /cli/src/commands/wheels/docs/serve.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/commands/wheels/docs/serve.cfc -------------------------------------------------------------------------------- /cli/src/commands/wheels/doctor.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/commands/wheels/doctor.cfc -------------------------------------------------------------------------------- /cli/src/commands/wheels/env/list.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/commands/wheels/env/list.cfc -------------------------------------------------------------------------------- /cli/src/commands/wheels/env/merge.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/commands/wheels/env/merge.cfc -------------------------------------------------------------------------------- /cli/src/commands/wheels/env/set.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/commands/wheels/env/set.cfc -------------------------------------------------------------------------------- /cli/src/commands/wheels/env/setup.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/commands/wheels/env/setup.cfc -------------------------------------------------------------------------------- /cli/src/commands/wheels/env/show.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/commands/wheels/env/show.cfc -------------------------------------------------------------------------------- /cli/src/commands/wheels/env/switch.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/commands/wheels/env/switch.cfc -------------------------------------------------------------------------------- /cli/src/commands/wheels/env/validate.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/commands/wheels/env/validate.cfc -------------------------------------------------------------------------------- /cli/src/commands/wheels/environment.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/commands/wheels/environment.cfc -------------------------------------------------------------------------------- /cli/src/commands/wheels/generate/app.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/commands/wheels/generate/app.cfc -------------------------------------------------------------------------------- /cli/src/commands/wheels/generate/model.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/commands/wheels/generate/model.cfc -------------------------------------------------------------------------------- /cli/src/commands/wheels/generate/route.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/commands/wheels/generate/route.cfc -------------------------------------------------------------------------------- /cli/src/commands/wheels/generate/test.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/commands/wheels/generate/test.cfc -------------------------------------------------------------------------------- /cli/src/commands/wheels/generate/view.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/commands/wheels/generate/view.cfc -------------------------------------------------------------------------------- /cli/src/commands/wheels/get/settings.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/commands/wheels/get/settings.cfc -------------------------------------------------------------------------------- /cli/src/commands/wheels/info.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/commands/wheels/info.cfc -------------------------------------------------------------------------------- /cli/src/commands/wheels/init.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/commands/wheels/init.cfc -------------------------------------------------------------------------------- /cli/src/commands/wheels/log/clear.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/commands/wheels/log/clear.cfc -------------------------------------------------------------------------------- /cli/src/commands/wheels/log/tail.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/commands/wheels/log/tail.cfc -------------------------------------------------------------------------------- /cli/src/commands/wheels/maintenance/on.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/commands/wheels/maintenance/on.cfc -------------------------------------------------------------------------------- /cli/src/commands/wheels/mcp/remove.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/commands/wheels/mcp/remove.cfc -------------------------------------------------------------------------------- /cli/src/commands/wheels/mcp/setup.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/commands/wheels/mcp/setup.cfc -------------------------------------------------------------------------------- /cli/src/commands/wheels/mcp/status.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/commands/wheels/mcp/status.cfc -------------------------------------------------------------------------------- /cli/src/commands/wheels/mcp/test.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/commands/wheels/mcp/test.cfc -------------------------------------------------------------------------------- /cli/src/commands/wheels/mcp/update.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/commands/wheels/mcp/update.cfc -------------------------------------------------------------------------------- /cli/src/commands/wheels/notes.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/commands/wheels/notes.cfc -------------------------------------------------------------------------------- /cli/src/commands/wheels/optimize.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/commands/wheels/optimize.cfc -------------------------------------------------------------------------------- /cli/src/commands/wheels/plugins/info.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/commands/wheels/plugins/info.cfc -------------------------------------------------------------------------------- /cli/src/commands/wheels/plugins/init.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/commands/wheels/plugins/init.cfc -------------------------------------------------------------------------------- /cli/src/commands/wheels/plugins/list.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/commands/wheels/plugins/list.cfc -------------------------------------------------------------------------------- /cli/src/commands/wheels/plugins/remove.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/commands/wheels/plugins/remove.cfc -------------------------------------------------------------------------------- /cli/src/commands/wheels/plugins/search.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/commands/wheels/plugins/search.cfc -------------------------------------------------------------------------------- /cli/src/commands/wheels/plugins/update.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/commands/wheels/plugins/update.cfc -------------------------------------------------------------------------------- /cli/src/commands/wheels/profile.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/commands/wheels/profile.cfc -------------------------------------------------------------------------------- /cli/src/commands/wheels/reload.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/commands/wheels/reload.cfc -------------------------------------------------------------------------------- /cli/src/commands/wheels/routes.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/commands/wheels/routes.cfc -------------------------------------------------------------------------------- /cli/src/commands/wheels/routes/match.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/commands/wheels/routes/match.cfc -------------------------------------------------------------------------------- /cli/src/commands/wheels/secret.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/commands/wheels/secret.cfc -------------------------------------------------------------------------------- /cli/src/commands/wheels/security/scan.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/commands/wheels/security/scan.cfc -------------------------------------------------------------------------------- /cli/src/commands/wheels/server.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/commands/wheels/server.cfc -------------------------------------------------------------------------------- /cli/src/commands/wheels/server/log.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/commands/wheels/server/log.cfc -------------------------------------------------------------------------------- /cli/src/commands/wheels/server/open.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/commands/wheels/server/open.cfc -------------------------------------------------------------------------------- /cli/src/commands/wheels/server/restart.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/commands/wheels/server/restart.cfc -------------------------------------------------------------------------------- /cli/src/commands/wheels/server/start.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/commands/wheels/server/start.cfc -------------------------------------------------------------------------------- /cli/src/commands/wheels/server/status.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/commands/wheels/server/status.cfc -------------------------------------------------------------------------------- /cli/src/commands/wheels/server/stop.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/commands/wheels/server/stop.cfc -------------------------------------------------------------------------------- /cli/src/commands/wheels/set.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/commands/wheels/set.cfc -------------------------------------------------------------------------------- /cli/src/commands/wheels/set/datasource.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/commands/wheels/set/datasource.cfc -------------------------------------------------------------------------------- /cli/src/commands/wheels/set/settings.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/commands/wheels/set/settings.cfc -------------------------------------------------------------------------------- /cli/src/commands/wheels/stats.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/commands/wheels/stats.cfc -------------------------------------------------------------------------------- /cli/src/commands/wheels/test/all.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/commands/wheels/test/all.cfc -------------------------------------------------------------------------------- /cli/src/commands/wheels/test/coverage.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/commands/wheels/test/coverage.cfc -------------------------------------------------------------------------------- /cli/src/commands/wheels/test/run.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/commands/wheels/test/run.cfc -------------------------------------------------------------------------------- /cli/src/commands/wheels/test/unit.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/commands/wheels/test/unit.cfc -------------------------------------------------------------------------------- /cli/src/commands/wheels/test/watch.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/commands/wheels/test/watch.cfc -------------------------------------------------------------------------------- /cli/src/commands/wheels/upgrade.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/commands/wheels/upgrade.cfc -------------------------------------------------------------------------------- /cli/src/commands/wheels/version.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/commands/wheels/version.cfc -------------------------------------------------------------------------------- /cli/src/commands/wheels/watch.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/commands/wheels/watch.cfc -------------------------------------------------------------------------------- /cli/src/interceptors/postInstall.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/interceptors/postInstall.cfc -------------------------------------------------------------------------------- /cli/src/models/AnalysisService.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/models/AnalysisService.cfc -------------------------------------------------------------------------------- /cli/src/models/BaseCommand.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/models/BaseCommand.cfc -------------------------------------------------------------------------------- /cli/src/models/CodeGenerationService.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/models/CodeGenerationService.cfc -------------------------------------------------------------------------------- /cli/src/models/DetailOutputService.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/models/DetailOutputService.cfc -------------------------------------------------------------------------------- /cli/src/models/EnvironmentService.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/models/EnvironmentService.cfc -------------------------------------------------------------------------------- /cli/src/models/MCPService.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/models/MCPService.cfc -------------------------------------------------------------------------------- /cli/src/models/MigrationService.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/models/MigrationService.cfc -------------------------------------------------------------------------------- /cli/src/models/OptimizationService.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/models/OptimizationService.cfc -------------------------------------------------------------------------------- /cli/src/models/PluginService.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/models/PluginService.cfc -------------------------------------------------------------------------------- /cli/src/models/ScaffoldService.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/models/ScaffoldService.cfc -------------------------------------------------------------------------------- /cli/src/models/SecurityService.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/models/SecurityService.cfc -------------------------------------------------------------------------------- /cli/src/models/SharedParameters.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/models/SharedParameters.cfc -------------------------------------------------------------------------------- /cli/src/models/TemplateService.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/models/TemplateService.cfc -------------------------------------------------------------------------------- /cli/src/models/TestMigrationService.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/models/TestMigrationService.cfc -------------------------------------------------------------------------------- /cli/src/models/TestService.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/models/TestService.cfc -------------------------------------------------------------------------------- /cli/src/models/helpers.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/models/helpers.cfc -------------------------------------------------------------------------------- /cli/src/recipes/config-migration.boxr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/recipes/config-migration.boxr -------------------------------------------------------------------------------- /cli/src/templates/ActionContent.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/templates/ActionContent.txt -------------------------------------------------------------------------------- /cli/src/templates/ApiControllerContent.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/templates/ApiControllerContent.txt -------------------------------------------------------------------------------- /cli/src/templates/BoxJSON.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/templates/BoxJSON.txt -------------------------------------------------------------------------------- /cli/src/templates/CRUDContent.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/templates/CRUDContent.txt -------------------------------------------------------------------------------- /cli/src/templates/ConfigAppContent.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/templates/ConfigAppContent.txt -------------------------------------------------------------------------------- /cli/src/templates/ConfigRoutes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/templates/ConfigRoutes.txt -------------------------------------------------------------------------------- /cli/src/templates/ControllerContent.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/templates/ControllerContent.txt -------------------------------------------------------------------------------- /cli/src/templates/DBMigrate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/templates/DBMigrate.txt -------------------------------------------------------------------------------- /cli/src/templates/McpConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/templates/McpConfig.json -------------------------------------------------------------------------------- /cli/src/templates/ModelContent.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/templates/ModelContent.txt -------------------------------------------------------------------------------- /cli/src/templates/OpenCodeConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/templates/OpenCodeConfig.json -------------------------------------------------------------------------------- /cli/src/templates/ServerJSON.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/templates/ServerJSON.txt -------------------------------------------------------------------------------- /cli/src/templates/ViewContent.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/templates/ViewContent.txt -------------------------------------------------------------------------------- /cli/src/templates/WheelsBoxJSON.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/templates/WheelsBoxJSON.txt -------------------------------------------------------------------------------- /cli/src/templates/bootstrap/layout.cfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/templates/bootstrap/layout.cfm -------------------------------------------------------------------------------- /cli/src/templates/bootstrap/settings.cfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/templates/bootstrap/settings.cfm -------------------------------------------------------------------------------- /cli/src/templates/crud/_form.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/templates/crud/_form.txt -------------------------------------------------------------------------------- /cli/src/templates/crud/edit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/templates/crud/edit.txt -------------------------------------------------------------------------------- /cli/src/templates/crud/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/templates/crud/index.txt -------------------------------------------------------------------------------- /cli/src/templates/crud/new.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/templates/crud/new.txt -------------------------------------------------------------------------------- /cli/src/templates/crud/show.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/templates/crud/show.txt -------------------------------------------------------------------------------- /cli/src/templates/dbmigrate/announce.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/templates/dbmigrate/announce.txt -------------------------------------------------------------------------------- /cli/src/templates/dbmigrate/blank.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/templates/dbmigrate/blank.txt -------------------------------------------------------------------------------- /cli/src/templates/dbmigrate/execute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/templates/dbmigrate/execute.txt -------------------------------------------------------------------------------- /cli/src/templates/tests/controller.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/templates/tests/controller.txt -------------------------------------------------------------------------------- /cli/src/templates/tests/model.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/templates/tests/model.txt -------------------------------------------------------------------------------- /cli/src/templates/tests/view.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/cli/src/templates/tests/view.txt -------------------------------------------------------------------------------- /compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/compose.yml -------------------------------------------------------------------------------- /context7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/context7.json -------------------------------------------------------------------------------- /core/box.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/box.json -------------------------------------------------------------------------------- /core/src/wheels/Controller.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/Controller.cfc -------------------------------------------------------------------------------- /core/src/wheels/Dispatch.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/Dispatch.cfc -------------------------------------------------------------------------------- /core/src/wheels/Global.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/Global.cfc -------------------------------------------------------------------------------- /core/src/wheels/Job.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/Job.cfc -------------------------------------------------------------------------------- /core/src/wheels/Mapper.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/Mapper.cfc -------------------------------------------------------------------------------- /core/src/wheels/Migrator.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/Migrator.cfc -------------------------------------------------------------------------------- /core/src/wheels/Model.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/Model.cfc -------------------------------------------------------------------------------- /core/src/wheels/Plugins.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/Plugins.cfc -------------------------------------------------------------------------------- /core/src/wheels/Public.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/Public.cfc -------------------------------------------------------------------------------- /core/src/wheels/Test.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/Test.cfc -------------------------------------------------------------------------------- /core/src/wheels/Testbox.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/Testbox.cfc -------------------------------------------------------------------------------- /core/src/wheels/Wirebox.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/Wirebox.cfc -------------------------------------------------------------------------------- /core/src/wheels/box.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/box.json -------------------------------------------------------------------------------- /core/src/wheels/controller/caching.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/controller/caching.cfc -------------------------------------------------------------------------------- /core/src/wheels/controller/csrf.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/controller/csrf.cfc -------------------------------------------------------------------------------- /core/src/wheels/controller/filters.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/controller/filters.cfc -------------------------------------------------------------------------------- /core/src/wheels/controller/flash.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/controller/flash.cfc -------------------------------------------------------------------------------- /core/src/wheels/controller/layouts.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/controller/layouts.cfc -------------------------------------------------------------------------------- /core/src/wheels/controller/processing.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/controller/processing.cfc -------------------------------------------------------------------------------- /core/src/wheels/controller/provides.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/controller/provides.cfc -------------------------------------------------------------------------------- /core/src/wheels/controller/redirection.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/controller/redirection.cfc -------------------------------------------------------------------------------- /core/src/wheels/controller/rendering.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/controller/rendering.cfc -------------------------------------------------------------------------------- /core/src/wheels/controller/verifies.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/controller/verifies.cfc -------------------------------------------------------------------------------- /core/src/wheels/controllers/Tests.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/controllers/Tests.cfc -------------------------------------------------------------------------------- /core/src/wheels/events/EventMethods.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/events/EventMethods.cfc -------------------------------------------------------------------------------- /core/src/wheels/mapper/mapping.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/mapper/mapping.cfc -------------------------------------------------------------------------------- /core/src/wheels/mapper/matching.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/mapper/matching.cfc -------------------------------------------------------------------------------- /core/src/wheels/mapper/resources.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/mapper/resources.cfc -------------------------------------------------------------------------------- /core/src/wheels/mapper/scoping.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/mapper/scoping.cfc -------------------------------------------------------------------------------- /core/src/wheels/migrator/Base.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/migrator/Base.cfc -------------------------------------------------------------------------------- /core/src/wheels/migrator/Migration.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/migrator/Migration.cfc -------------------------------------------------------------------------------- /core/src/wheels/migrator/adapters/H2.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/migrator/adapters/H2.cfc -------------------------------------------------------------------------------- /core/src/wheels/model/adapters/Base.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/model/adapters/Base.cfc -------------------------------------------------------------------------------- /core/src/wheels/model/adapters/H2.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/model/adapters/H2.cfc -------------------------------------------------------------------------------- /core/src/wheels/model/adapters/MySQL.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/model/adapters/MySQL.cfc -------------------------------------------------------------------------------- /core/src/wheels/model/adapters/Oracle.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/model/adapters/Oracle.cfc -------------------------------------------------------------------------------- /core/src/wheels/model/adapters/SQLite.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/model/adapters/SQLite.cfc -------------------------------------------------------------------------------- /core/src/wheels/model/associations.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/model/associations.cfc -------------------------------------------------------------------------------- /core/src/wheels/model/calculations.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/model/calculations.cfc -------------------------------------------------------------------------------- /core/src/wheels/model/callbacks.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/model/callbacks.cfc -------------------------------------------------------------------------------- /core/src/wheels/model/create.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/model/create.cfc -------------------------------------------------------------------------------- /core/src/wheels/model/delete.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/model/delete.cfc -------------------------------------------------------------------------------- /core/src/wheels/model/errors.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/model/errors.cfc -------------------------------------------------------------------------------- /core/src/wheels/model/miscellaneous.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/model/miscellaneous.cfc -------------------------------------------------------------------------------- /core/src/wheels/model/nestedproperties.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/model/nestedproperties.cfc -------------------------------------------------------------------------------- /core/src/wheels/model/onmissingmethod.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/model/onmissingmethod.cfc -------------------------------------------------------------------------------- /core/src/wheels/model/properties.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/model/properties.cfc -------------------------------------------------------------------------------- /core/src/wheels/model/read.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/model/read.cfc -------------------------------------------------------------------------------- /core/src/wheels/model/serialize.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/model/serialize.cfc -------------------------------------------------------------------------------- /core/src/wheels/model/sql.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/model/sql.cfc -------------------------------------------------------------------------------- /core/src/wheels/model/transactions.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/model/transactions.cfc -------------------------------------------------------------------------------- /core/src/wheels/model/update.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/model/update.cfc -------------------------------------------------------------------------------- /core/src/wheels/model/validations.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/model/validations.cfc -------------------------------------------------------------------------------- /core/src/wheels/public/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/public/README.md -------------------------------------------------------------------------------- /core/src/wheels/public/assets/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /core/src/wheels/public/docs/core.cfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/public/docs/core.cfm -------------------------------------------------------------------------------- /core/src/wheels/public/docs/guides.cfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/public/docs/guides.cfm -------------------------------------------------------------------------------- /core/src/wheels/public/docs/reference/controller/flashclear.txt: -------------------------------------------------------------------------------- 1 | flashClear(); -------------------------------------------------------------------------------- /core/src/wheels/public/docs/reference/controller/flashdelete.txt: -------------------------------------------------------------------------------- 1 | flashDelete(key="errorMessage"); -------------------------------------------------------------------------------- /core/src/wheels/public/docs/reference/controller/flashinsert.txt: -------------------------------------------------------------------------------- 1 | flashInsert(msg="It Worked!"); -------------------------------------------------------------------------------- /core/src/wheels/public/docs/reference/controller/provides.txt: -------------------------------------------------------------------------------- 1 | provides("html,xml,json"); -------------------------------------------------------------------------------- /core/src/wheels/public/docs/reference/model/errormessagesfor.txt: -------------------------------------------------------------------------------- 1 | 2 | #errorMessagesFor(objectName="user")# -------------------------------------------------------------------------------- /core/src/wheels/public/helpers.cfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/public/helpers.cfm -------------------------------------------------------------------------------- /core/src/wheels/public/layout/_footer.cfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/public/layout/_footer.cfm -------------------------------------------------------------------------------- /core/src/wheels/public/layout/_header.cfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/public/layout/_header.cfm -------------------------------------------------------------------------------- /core/src/wheels/public/mcp/McpServer.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/public/mcp/McpServer.cfc -------------------------------------------------------------------------------- /core/src/wheels/public/migrator/sql.cfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/public/migrator/sql.cfm -------------------------------------------------------------------------------- /core/src/wheels/public/routes.cfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/public/routes.cfm -------------------------------------------------------------------------------- /core/src/wheels/public/tests/html.cfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/public/tests/html.cfm -------------------------------------------------------------------------------- /core/src/wheels/public/tests/json.cfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/public/tests/json.cfm -------------------------------------------------------------------------------- /core/src/wheels/public/tests/junit.cfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/public/tests/junit.cfm -------------------------------------------------------------------------------- /core/src/wheels/public/tests/txt.cfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/public/tests/txt.cfm -------------------------------------------------------------------------------- /core/src/wheels/public/views/ai.cfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/public/views/ai.cfm -------------------------------------------------------------------------------- /core/src/wheels/public/views/api.cfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/public/views/api.cfm -------------------------------------------------------------------------------- /core/src/wheels/public/views/cli.cfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/public/views/cli.cfm -------------------------------------------------------------------------------- /core/src/wheels/public/views/docs.cfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/public/views/docs.cfm -------------------------------------------------------------------------------- /core/src/wheels/public/views/guides.cfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/public/views/guides.cfm -------------------------------------------------------------------------------- /core/src/wheels/public/views/info.cfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/public/views/info.cfm -------------------------------------------------------------------------------- /core/src/wheels/public/views/mcp.cfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/public/views/mcp.cfm -------------------------------------------------------------------------------- /core/src/wheels/public/views/migrator.cfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/public/views/migrator.cfm -------------------------------------------------------------------------------- /core/src/wheels/public/views/packages.cfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/public/views/packages.cfm -------------------------------------------------------------------------------- /core/src/wheels/public/views/plugins.cfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/public/views/plugins.cfm -------------------------------------------------------------------------------- /core/src/wheels/public/views/routes.cfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/public/views/routes.cfm -------------------------------------------------------------------------------- /core/src/wheels/public/views/runner.cfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/public/views/runner.cfm -------------------------------------------------------------------------------- /core/src/wheels/public/views/tests.cfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/public/views/tests.cfm -------------------------------------------------------------------------------- /core/src/wheels/tests/Application.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/tests/Application.cfc -------------------------------------------------------------------------------- /core/src/wheels/tests/Test.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/tests/Test.cfc -------------------------------------------------------------------------------- /core/src/wheels/tests/_assets/controllers/Controller.cfc: -------------------------------------------------------------------------------- 1 | component extends="wheels.Controller" { 2 | 3 | 4 | } 5 | -------------------------------------------------------------------------------- /core/src/wheels/tests/_assets/files/cfwheels-logo.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/src/wheels/tests/_assets/files/sendFile.txt: -------------------------------------------------------------------------------- 1 | empty file -------------------------------------------------------------------------------- /core/src/wheels/tests/_assets/files/wheelslogo.txt: -------------------------------------------------------------------------------- 1 | Empty File -------------------------------------------------------------------------------- /core/src/wheels/tests/_assets/models/Model.cfc: -------------------------------------------------------------------------------- 1 | component extends="wheels.Model" { 2 | 3 | 4 | } 5 | -------------------------------------------------------------------------------- /core/src/wheels/tests/_assets/views/shared/anotherplainemailtemplate.cfm: -------------------------------------------------------------------------------- 1 | another dummy plain email body -------------------------------------------------------------------------------- /core/src/wheels/tests/_assets/views/test/_partialtemplate.cfm: -------------------------------------------------------------------------------- 1 | partial template content -------------------------------------------------------------------------------- /core/src/wheels/tests/_assets/views/test/htmlemailtemplate.cfm: -------------------------------------------------------------------------------- 1 |
dummy html email body
-------------------------------------------------------------------------------- /core/src/wheels/tests/_assets/views/test/sub/anotherhtmlemailtemplate.cfm: -------------------------------------------------------------------------------- 1 |another dummy html email body
-------------------------------------------------------------------------------- /core/src/wheels/tests/_assets/views/test/template.cfm: -------------------------------------------------------------------------------- 1 | specific template content -------------------------------------------------------------------------------- /core/src/wheels/tests/_assets/views/test/test.json.cfm: -------------------------------------------------------------------------------- 1 | json template content -------------------------------------------------------------------------------- /core/src/wheels/tests/_assets/views/test/test.pdf.cfm: -------------------------------------------------------------------------------- 1 | pdf template content -------------------------------------------------------------------------------- /core/src/wheels/tests/_assets/views/test/test.xml.cfm: -------------------------------------------------------------------------------- 1 | xml template content -------------------------------------------------------------------------------- /core/src/wheels/tests/_assets/views/test/test2.cfm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/src/wheels/tests/dispatch/request.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/tests/dispatch/request.cfc -------------------------------------------------------------------------------- /core/src/wheels/tests/env.cfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/tests/env.cfm -------------------------------------------------------------------------------- /core/src/wheels/tests/global/caching.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/tests/global/caching.cfc -------------------------------------------------------------------------------- /core/src/wheels/tests/global/strings.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/tests/global/strings.cfc -------------------------------------------------------------------------------- /core/src/wheels/tests/global/urlfor.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/tests/global/urlfor.cfc -------------------------------------------------------------------------------- /core/src/wheels/tests/mapper/mapping.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/tests/mapper/mapping.cfc -------------------------------------------------------------------------------- /core/src/wheels/tests/mapper/matching.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/tests/mapper/matching.cfc -------------------------------------------------------------------------------- /core/src/wheels/tests/mapper/package.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/tests/mapper/package.cfc -------------------------------------------------------------------------------- /core/src/wheels/tests/mapper/redirect.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/tests/mapper/redirect.cfc -------------------------------------------------------------------------------- /core/src/wheels/tests/mapper/resources.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/tests/mapper/resources.cfc -------------------------------------------------------------------------------- /core/src/wheels/tests/mapper/root.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/tests/mapper/root.cfc -------------------------------------------------------------------------------- /core/src/wheels/tests/mapper/utilities.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/tests/mapper/utilities.cfc -------------------------------------------------------------------------------- /core/src/wheels/tests/mapper/wildcard.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/tests/mapper/wildcard.cfc -------------------------------------------------------------------------------- /core/src/wheels/tests/model/crud/from.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/tests/model/crud/from.cfc -------------------------------------------------------------------------------- /core/src/wheels/tests/model/crud/group.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/tests/model/crud/group.cfc -------------------------------------------------------------------------------- /core/src/wheels/tests/model/crud/order.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/tests/model/crud/order.cfc -------------------------------------------------------------------------------- /core/src/wheels/tests/model/crud/where.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/tests/model/crud/where.cfc -------------------------------------------------------------------------------- /core/src/wheels/tests/plugins/helpers.cfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/tests/plugins/helpers.cfm -------------------------------------------------------------------------------- /core/src/wheels/tests/plugins/removing.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/tests/plugins/removing.cfc -------------------------------------------------------------------------------- /core/src/wheels/tests/plugins/runner.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/tests/plugins/runner.cfc -------------------------------------------------------------------------------- /core/src/wheels/tests/plugins/standard.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/tests/plugins/standard.cfc -------------------------------------------------------------------------------- /core/src/wheels/tests/populate.cfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/tests/populate.cfm -------------------------------------------------------------------------------- /core/src/wheels/tests/view/forms/label.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/tests/view/forms/label.cfc -------------------------------------------------------------------------------- /core/src/wheels/tests/view/urls/linkTo.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/tests/view/urls/linkTo.cfc -------------------------------------------------------------------------------- /core/src/wheels/tests/view/urls/mailTo.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/tests/view/urls/mailTo.cfc -------------------------------------------------------------------------------- /core/src/wheels/tests/view/urls/urlFor.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/tests/view/urls/urlFor.cfc -------------------------------------------------------------------------------- /core/src/wheels/tests_testbox/_assets/controllers/Controller.cfc: -------------------------------------------------------------------------------- 1 | component extends="wheels.Controller" { 2 | 3 | } -------------------------------------------------------------------------------- /core/src/wheels/tests_testbox/_assets/files/cfwheels-logo.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/src/wheels/tests_testbox/_assets/files/sendFile.txt: -------------------------------------------------------------------------------- 1 | empty file -------------------------------------------------------------------------------- /core/src/wheels/tests_testbox/_assets/files/wheelslogo.txt: -------------------------------------------------------------------------------- 1 | Empty File -------------------------------------------------------------------------------- /core/src/wheels/tests_testbox/_assets/models/Model.cfc: -------------------------------------------------------------------------------- 1 | component extends="wheels.Model" { 2 | 3 | 4 | } 5 | -------------------------------------------------------------------------------- /core/src/wheels/tests_testbox/_assets/plugins/overwriting/testglobalmixins/index.cfm: -------------------------------------------------------------------------------- 1 | overwritten -------------------------------------------------------------------------------- /core/src/wheels/tests_testbox/_assets/views/sample/httpStatusOkTest.cfm: -------------------------------------------------------------------------------- 1 | [200-OK] -------------------------------------------------------------------------------- /core/src/wheels/tests_testbox/_assets/views/shared/anotherplainemailtemplate.cfm: -------------------------------------------------------------------------------- 1 | another dummy plain email body -------------------------------------------------------------------------------- /core/src/wheels/tests_testbox/_assets/views/test/_partialtemplate.cfm: -------------------------------------------------------------------------------- 1 | partial template content -------------------------------------------------------------------------------- /core/src/wheels/tests_testbox/_assets/views/test/htmlemailtemplate.cfm: -------------------------------------------------------------------------------- 1 |dummy html email body
-------------------------------------------------------------------------------- /core/src/wheels/tests_testbox/_assets/views/test/sub/anotherhtmlemailtemplate.cfm: -------------------------------------------------------------------------------- 1 |another dummy html email body
-------------------------------------------------------------------------------- /core/src/wheels/tests_testbox/_assets/views/test/template.cfm: -------------------------------------------------------------------------------- 1 | specific template content -------------------------------------------------------------------------------- /core/src/wheels/tests_testbox/_assets/views/test/test.json.cfm: -------------------------------------------------------------------------------- 1 | json template content -------------------------------------------------------------------------------- /core/src/wheels/tests_testbox/_assets/views/test/test.pdf.cfm: -------------------------------------------------------------------------------- 1 | pdf template content -------------------------------------------------------------------------------- /core/src/wheels/tests_testbox/_assets/views/test/test.xml.cfm: -------------------------------------------------------------------------------- 1 | xml template content -------------------------------------------------------------------------------- /core/src/wheels/tests_testbox/_assets/views/test/test2.cfm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/src/wheels/tests_testbox/html.cfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/tests_testbox/html.cfm -------------------------------------------------------------------------------- /core/src/wheels/tests_testbox/populate.cfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/tests_testbox/populate.cfm -------------------------------------------------------------------------------- /core/src/wheels/tests_testbox/resources/app/view/helpers.cfm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/src/wheels/tests_testbox/resources/app/view/layout.cfm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/src/wheels/tests_testbox/routes.cfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/tests_testbox/routes.cfm -------------------------------------------------------------------------------- /core/src/wheels/tests_testbox/runner.cfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/tests_testbox/runner.cfm -------------------------------------------------------------------------------- /core/src/wheels/tests_testbox/server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/tests_testbox/server.json -------------------------------------------------------------------------------- /core/src/wheels/vendor/toXml/toXML.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/vendor/toXml/toXML.cfc -------------------------------------------------------------------------------- /core/src/wheels/view/assets.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/view/assets.cfc -------------------------------------------------------------------------------- /core/src/wheels/view/csrf.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/view/csrf.cfc -------------------------------------------------------------------------------- /core/src/wheels/view/errors.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/view/errors.cfc -------------------------------------------------------------------------------- /core/src/wheels/view/forms.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/view/forms.cfc -------------------------------------------------------------------------------- /core/src/wheels/view/formsassociation.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/view/formsassociation.cfc -------------------------------------------------------------------------------- /core/src/wheels/view/formsdate.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/view/formsdate.cfc -------------------------------------------------------------------------------- /core/src/wheels/view/formsdateobject.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/view/formsdateobject.cfc -------------------------------------------------------------------------------- /core/src/wheels/view/formsdateplain.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/view/formsdateplain.cfc -------------------------------------------------------------------------------- /core/src/wheels/view/formsobject.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/view/formsobject.cfc -------------------------------------------------------------------------------- /core/src/wheels/view/formsplain.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/view/formsplain.cfc -------------------------------------------------------------------------------- /core/src/wheels/view/links.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/view/links.cfc -------------------------------------------------------------------------------- /core/src/wheels/view/miscellaneous.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/view/miscellaneous.cfc -------------------------------------------------------------------------------- /core/src/wheels/view/sanitize.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/src/wheels/view/sanitize.cfc -------------------------------------------------------------------------------- /core/tests/Application.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/tests/Application.cfc -------------------------------------------------------------------------------- /core/tests/BaseSpec.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/tests/BaseSpec.cfc -------------------------------------------------------------------------------- /core/tests/Test.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/tests/Test.cfc -------------------------------------------------------------------------------- /core/tests/runner.cfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/tests/runner.cfm -------------------------------------------------------------------------------- /core/tests/specs/functions/Example.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/tests/specs/functions/Example.cfc -------------------------------------------------------------------------------- /core/tests/specs/models/ProductTest.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/tests/specs/models/ProductTest.cfc -------------------------------------------------------------------------------- /core/tests/specs/requests/Example.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/core/tests/specs/requests/Example.cfc -------------------------------------------------------------------------------- /design_docs/scratchpad/AI-CLI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/design_docs/scratchpad/AI-CLI.md -------------------------------------------------------------------------------- /design_docs/scratchpad/AI-CONTEXT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/design_docs/scratchpad/AI-CONTEXT.md -------------------------------------------------------------------------------- /design_docs/scratchpad/AI-ERRORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/design_docs/scratchpad/AI-ERRORS.md -------------------------------------------------------------------------------- /design_docs/scratchpad/AI-EXAMPLES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/design_docs/scratchpad/AI-EXAMPLES.md -------------------------------------------------------------------------------- /design_docs/scratchpad/AI-MIGRATIONS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/design_docs/scratchpad/AI-MIGRATIONS.md -------------------------------------------------------------------------------- /design_docs/scratchpad/AI-PATTERNS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/design_docs/scratchpad/AI-PATTERNS.md -------------------------------------------------------------------------------- /design_docs/scratchpad/AI-TESTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/design_docs/scratchpad/AI-TESTING.md -------------------------------------------------------------------------------- /design_docs/scratchpad/CLI-TEST-PROMPT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/design_docs/scratchpad/CLI-TEST-PROMPT.md -------------------------------------------------------------------------------- /design_docs/scratchpad/CLI-TEST-RESULTS-TEMPLATE.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /design_docs/scratchpad/V3NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/design_docs/scratchpad/V3NOTES.md -------------------------------------------------------------------------------- /docs/AI_INTEGRATION_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/docs/AI_INTEGRATION_GUIDE.md -------------------------------------------------------------------------------- /docs/api/v1.4.5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/docs/api/v1.4.5.json -------------------------------------------------------------------------------- /docs/api/v2.0.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/docs/api/v2.0.0.json -------------------------------------------------------------------------------- /docs/api/v2.1.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/docs/api/v2.1.0.json -------------------------------------------------------------------------------- /docs/api/v2.2.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/docs/api/v2.2.0.json -------------------------------------------------------------------------------- /docs/api/v2.3.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/docs/api/v2.3.0.json -------------------------------------------------------------------------------- /docs/api/v2.4.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/docs/api/v2.4.0.json -------------------------------------------------------------------------------- /docs/api/v2.5.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/docs/api/v2.5.0.json -------------------------------------------------------------------------------- /docs/api/v3.0.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/docs/api/v3.0.0.json -------------------------------------------------------------------------------- /docs/mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/docs/mkdocs.yml -------------------------------------------------------------------------------- /docs/overrides/stylesheets/gitbook.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/docs/overrides/stylesheets/gitbook.css -------------------------------------------------------------------------------- /docs/public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/docs/public/404.html -------------------------------------------------------------------------------- /docs/public/SUMMARY/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/docs/public/SUMMARY/index.html -------------------------------------------------------------------------------- /docs/public/_layouts/ebook/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/docs/public/_layouts/ebook/page.html -------------------------------------------------------------------------------- /docs/public/_layouts/ebook/pdf_footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/docs/public/_layouts/ebook/pdf_footer.html -------------------------------------------------------------------------------- /docs/public/_layouts/ebook/pdf_header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/docs/public/_layouts/ebook/pdf_header.html -------------------------------------------------------------------------------- /docs/public/_layouts/ebook/summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/docs/public/_layouts/ebook/summary.html -------------------------------------------------------------------------------- /docs/public/_layouts/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/docs/public/_layouts/layout.html -------------------------------------------------------------------------------- /docs/public/_layouts/website/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/docs/public/_layouts/website/header.html -------------------------------------------------------------------------------- /docs/public/_layouts/website/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/docs/public/_layouts/website/layout.html -------------------------------------------------------------------------------- /docs/public/_layouts/website/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/docs/public/_layouts/website/page.html -------------------------------------------------------------------------------- /docs/public/_layouts/website/summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/docs/public/_layouts/website/summary.html -------------------------------------------------------------------------------- /docs/public/assets/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/docs/public/assets/images/favicon.png -------------------------------------------------------------------------------- /docs/public/assets/javascripts/lunr/min/lunr.jp.min.js: -------------------------------------------------------------------------------- 1 | module.exports=require("./lunr.ja"); -------------------------------------------------------------------------------- /docs/public/book.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/docs/public/book.json -------------------------------------------------------------------------------- /docs/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/docs/public/index.html -------------------------------------------------------------------------------- /docs/public/search/search_index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/docs/public/search/search_index.json -------------------------------------------------------------------------------- /docs/public/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/docs/public/sitemap.xml -------------------------------------------------------------------------------- /docs/public/sitemap.xml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/docs/public/sitemap.xml.gz -------------------------------------------------------------------------------- /docs/src/.gitbook/assets/29a95a8-docs1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/docs/src/.gitbook/assets/29a95a8-docs1.jpg -------------------------------------------------------------------------------- /docs/src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/docs/src/README.md -------------------------------------------------------------------------------- /docs/src/SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/docs/src/SUMMARY.md -------------------------------------------------------------------------------- /docs/src/_layouts/ebook/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/docs/src/_layouts/ebook/page.html -------------------------------------------------------------------------------- /docs/src/_layouts/ebook/pdf_footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/docs/src/_layouts/ebook/pdf_footer.html -------------------------------------------------------------------------------- /docs/src/_layouts/ebook/pdf_header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/docs/src/_layouts/ebook/pdf_header.html -------------------------------------------------------------------------------- /docs/src/_layouts/ebook/summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/docs/src/_layouts/ebook/summary.html -------------------------------------------------------------------------------- /docs/src/_layouts/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/docs/src/_layouts/layout.html -------------------------------------------------------------------------------- /docs/src/_layouts/website/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/docs/src/_layouts/website/header.html -------------------------------------------------------------------------------- /docs/src/_layouts/website/languages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/docs/src/_layouts/website/languages.html -------------------------------------------------------------------------------- /docs/src/_layouts/website/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/docs/src/_layouts/website/layout.html -------------------------------------------------------------------------------- /docs/src/_layouts/website/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/docs/src/_layouts/website/page.html -------------------------------------------------------------------------------- /docs/src/_layouts/website/summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/docs/src/_layouts/website/summary.html -------------------------------------------------------------------------------- /docs/src/book.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/docs/src/book.json -------------------------------------------------------------------------------- /docs/src/command-line-tools/quick-start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/docs/src/command-line-tools/quick-start.md -------------------------------------------------------------------------------- /docs/src/introduction/requirements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/docs/src/introduction/requirements.md -------------------------------------------------------------------------------- /docs/src/introduction/screencasts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/docs/src/introduction/screencasts.md -------------------------------------------------------------------------------- /docs/src/introduction/upgrading.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/docs/src/introduction/upgrading.md -------------------------------------------------------------------------------- /docs/src/plugins/developing-plugins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/docs/src/plugins/developing-plugins.md -------------------------------------------------------------------------------- /docs/src/plugins/publishing-plugins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/docs/src/plugins/publishing-plugins.md -------------------------------------------------------------------------------- /docs/src/project-documentation/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/docs/src/project-documentation/overview.md -------------------------------------------------------------------------------- /docs/src/stylesheets/gitbook.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/docs/src/stylesheets/gitbook.css -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/starter-app/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/examples/starter-app/.env.example -------------------------------------------------------------------------------- /examples/starter-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/examples/starter-app/.gitignore -------------------------------------------------------------------------------- /examples/starter-app/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/examples/starter-app/LICENSE -------------------------------------------------------------------------------- /examples/starter-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/examples/starter-app/README.md -------------------------------------------------------------------------------- /examples/starter-app/app/global/auth.cfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/examples/starter-app/app/global/auth.cfm -------------------------------------------------------------------------------- /examples/starter-app/app/global/utils.cfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/examples/starter-app/app/global/utils.cfm -------------------------------------------------------------------------------- /examples/starter-app/app/lib/.keep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /examples/starter-app/app/migrator/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/starter-app/app/models/Model.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/examples/starter-app/app/models/Model.cfc -------------------------------------------------------------------------------- /examples/starter-app/app/models/Role.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/examples/starter-app/app/models/Role.cfc -------------------------------------------------------------------------------- /examples/starter-app/app/models/User.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/examples/starter-app/app/models/User.cfc -------------------------------------------------------------------------------- /examples/starter-app/app/views/helpers.cfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/examples/starter-app/app/views/helpers.cfm -------------------------------------------------------------------------------- /examples/starter-app/app/views/layout.cfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/examples/starter-app/app/views/layout.cfm -------------------------------------------------------------------------------- /examples/starter-app/box.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/examples/starter-app/box.json -------------------------------------------------------------------------------- /examples/starter-app/config/app.cfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/examples/starter-app/config/app.cfm -------------------------------------------------------------------------------- /examples/starter-app/config/routes.cfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/examples/starter-app/config/routes.cfm -------------------------------------------------------------------------------- /examples/starter-app/config/settings.cfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/examples/starter-app/config/settings.cfm -------------------------------------------------------------------------------- /examples/starter-app/db/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/starter-app/plugins/.keep: -------------------------------------------------------------------------------- 1 | /*.zip 2 | /*/ 3 | -------------------------------------------------------------------------------- /examples/starter-app/public/files/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/starter-app/public/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/starter-app/public/index.cfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/examples/starter-app/public/index.cfm -------------------------------------------------------------------------------- /examples/starter-app/public/javascripts/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/starter-app/public/stylesheets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/starter-app/public/test-mcp.cfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/examples/starter-app/public/test-mcp.cfm -------------------------------------------------------------------------------- /examples/starter-app/public/urlrewrite.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/examples/starter-app/public/urlrewrite.xml -------------------------------------------------------------------------------- /examples/starter-app/server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/examples/starter-app/server.json -------------------------------------------------------------------------------- /examples/starter-app/tests/_assets/controllers/Controller.cfc: -------------------------------------------------------------------------------- 1 | component extends="wheels.Controller" { 2 | 3 | } -------------------------------------------------------------------------------- /examples/starter-app/tests/_assets/files/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/starter-app/tests/_assets/migrator/migrations/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/starter-app/tests/_assets/models/Model.cfc: -------------------------------------------------------------------------------- 1 | component extends="wheels.Model" { 2 | 3 | 4 | } 5 | -------------------------------------------------------------------------------- /examples/starter-app/tests/_assets/plugins/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/starter-app/tests/_assets/views/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/starter-app/tests/_assets/views/helpers.cfm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/starter-app/tests/_assets/views/layout.cfm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/starter-app/tests/populate.cfm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/starter-app/tests/routes.cfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/examples/starter-app/tests/routes.cfm -------------------------------------------------------------------------------- /examples/starter-app/tests/runner.cfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/examples/starter-app/tests/runner.cfm -------------------------------------------------------------------------------- /examples/tweet/.ai/CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/examples/tweet/.ai/CLAUDE.md -------------------------------------------------------------------------------- /examples/tweet/.ai/CONTRIBUTION_SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/examples/tweet/.ai/CONTRIBUTION_SUMMARY.md -------------------------------------------------------------------------------- /examples/tweet/.ai/MCP-ENFORCEMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/examples/tweet/.ai/MCP-ENFORCEMENT.md -------------------------------------------------------------------------------- /examples/tweet/.ai/QUICK_REFERENCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/examples/tweet/.ai/QUICK_REFERENCE.md -------------------------------------------------------------------------------- /examples/tweet/.ai/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/examples/tweet/.ai/README.md -------------------------------------------------------------------------------- /examples/tweet/.ai/cfml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/examples/tweet/.ai/cfml/README.md -------------------------------------------------------------------------------- /examples/tweet/.ai/cfml/syntax/comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/examples/tweet/.ai/cfml/syntax/comments.md -------------------------------------------------------------------------------- /examples/tweet/.ai/wheels/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/examples/tweet/.ai/wheels/README.md -------------------------------------------------------------------------------- /examples/tweet/.ai/wheels/patterns/crud.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/examples/tweet/.ai/wheels/patterns/crud.md -------------------------------------------------------------------------------- /examples/tweet/.ai/wheels/views/forms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/examples/tweet/.ai/wheels/views/forms.md -------------------------------------------------------------------------------- /examples/tweet/.ai/wheels/views/helpers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/examples/tweet/.ai/wheels/views/helpers.md -------------------------------------------------------------------------------- /examples/tweet/.ai/wheels/views/layouts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/examples/tweet/.ai/wheels/views/layouts.md -------------------------------------------------------------------------------- /examples/tweet/.ai/wheels/views/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/examples/tweet/.ai/wheels/views/testing.md -------------------------------------------------------------------------------- /examples/tweet/.claude/settings.local.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/examples/tweet/.claude/settings.local.json -------------------------------------------------------------------------------- /examples/tweet/.claude/skills/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/examples/tweet/.claude/skills/README.md -------------------------------------------------------------------------------- /examples/tweet/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/examples/tweet/.gitignore -------------------------------------------------------------------------------- /examples/tweet/AGENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/examples/tweet/AGENTS.md -------------------------------------------------------------------------------- /examples/tweet/CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/examples/tweet/CLAUDE.md -------------------------------------------------------------------------------- /examples/tweet/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/examples/tweet/LICENSE -------------------------------------------------------------------------------- /examples/tweet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/examples/tweet/README.md -------------------------------------------------------------------------------- /examples/tweet/app/CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/examples/tweet/app/CLAUDE.md -------------------------------------------------------------------------------- /examples/tweet/app/controllers/CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/examples/tweet/app/controllers/CLAUDE.md -------------------------------------------------------------------------------- /examples/tweet/app/controllers/Follows.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/examples/tweet/app/controllers/Follows.cfc -------------------------------------------------------------------------------- /examples/tweet/app/controllers/Likes.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/examples/tweet/app/controllers/Likes.cfc -------------------------------------------------------------------------------- /examples/tweet/app/controllers/Tweets.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/examples/tweet/app/controllers/Tweets.cfc -------------------------------------------------------------------------------- /examples/tweet/app/controllers/Users.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/examples/tweet/app/controllers/Users.cfc -------------------------------------------------------------------------------- /examples/tweet/app/events/CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/examples/tweet/app/events/CLAUDE.md -------------------------------------------------------------------------------- /examples/tweet/app/events/onabort.cfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/examples/tweet/app/events/onabort.cfm -------------------------------------------------------------------------------- /examples/tweet/app/events/onerror.cfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/examples/tweet/app/events/onerror.cfm -------------------------------------------------------------------------------- /examples/tweet/app/events/onerror.json.cfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/examples/tweet/app/events/onerror.json.cfm -------------------------------------------------------------------------------- /examples/tweet/app/events/onerror.xml.cfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/examples/tweet/app/events/onerror.xml.cfm -------------------------------------------------------------------------------- /examples/tweet/app/events/onrequestend.cfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/examples/tweet/app/events/onrequestend.cfm -------------------------------------------------------------------------------- /examples/tweet/app/events/onsessionend.cfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/examples/tweet/app/events/onsessionend.cfm -------------------------------------------------------------------------------- /examples/tweet/app/global/CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/examples/tweet/app/global/CLAUDE.md -------------------------------------------------------------------------------- /examples/tweet/app/global/functions.cfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/examples/tweet/app/global/functions.cfm -------------------------------------------------------------------------------- /examples/tweet/app/jobs/CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/examples/tweet/app/jobs/CLAUDE.md -------------------------------------------------------------------------------- /examples/tweet/app/lib/.keep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /examples/tweet/app/lib/CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/examples/tweet/app/lib/CLAUDE.md -------------------------------------------------------------------------------- /examples/tweet/app/mailers/CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/examples/tweet/app/mailers/CLAUDE.md -------------------------------------------------------------------------------- /examples/tweet/app/migrator/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/tweet/app/migrator/CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/examples/tweet/app/migrator/CLAUDE.md -------------------------------------------------------------------------------- /examples/tweet/app/migrator/migrations/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/tweet/app/models/CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/examples/tweet/app/models/CLAUDE.md -------------------------------------------------------------------------------- /examples/tweet/app/models/Follow.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/examples/tweet/app/models/Follow.cfc -------------------------------------------------------------------------------- /examples/tweet/app/models/Like.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/examples/tweet/app/models/Like.cfc -------------------------------------------------------------------------------- /examples/tweet/app/models/Model.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/examples/tweet/app/models/Model.cfc -------------------------------------------------------------------------------- /examples/tweet/app/models/Tweet.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/examples/tweet/app/models/Tweet.cfc -------------------------------------------------------------------------------- /examples/tweet/app/models/User.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/examples/tweet/app/models/User.cfc -------------------------------------------------------------------------------- /examples/tweet/app/snippets/BoxJSON.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/examples/tweet/app/snippets/BoxJSON.txt -------------------------------------------------------------------------------- /examples/tweet/app/snippets/CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/examples/tweet/app/snippets/CLAUDE.md -------------------------------------------------------------------------------- /examples/tweet/app/snippets/DBMigrate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/examples/tweet/app/snippets/DBMigrate.txt -------------------------------------------------------------------------------- /examples/tweet/app/snippets/ServerJSON.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/examples/tweet/app/snippets/ServerJSON.txt -------------------------------------------------------------------------------- /examples/tweet/app/snippets/crud/_form.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/examples/tweet/app/snippets/crud/_form.txt -------------------------------------------------------------------------------- /examples/tweet/app/snippets/crud/edit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/examples/tweet/app/snippets/crud/edit.txt -------------------------------------------------------------------------------- /examples/tweet/app/snippets/crud/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/examples/tweet/app/snippets/crud/index.txt -------------------------------------------------------------------------------- /examples/tweet/app/snippets/crud/new.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/examples/tweet/app/snippets/crud/new.txt -------------------------------------------------------------------------------- /examples/tweet/app/snippets/crud/show.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/examples/tweet/app/snippets/crud/show.txt -------------------------------------------------------------------------------- /examples/tweet/app/snippets/tests/view.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/examples/tweet/app/snippets/tests/view.txt -------------------------------------------------------------------------------- /examples/tweet/app/views/CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/examples/tweet/app/views/CLAUDE.md -------------------------------------------------------------------------------- /examples/tweet/app/views/helpers.cfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/examples/tweet/app/views/helpers.cfm -------------------------------------------------------------------------------- /examples/tweet/app/views/layout.cfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/examples/tweet/app/views/layout.cfm -------------------------------------------------------------------------------- /examples/tweet/app/views/sessions/new.cfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/examples/tweet/app/views/sessions/new.cfm -------------------------------------------------------------------------------- /examples/tweet/app/views/tweets/index.cfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/examples/tweet/app/views/tweets/index.cfm -------------------------------------------------------------------------------- /examples/tweet/app/views/users/edit.cfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/examples/tweet/app/views/users/edit.cfm -------------------------------------------------------------------------------- /examples/tweet/app/views/users/new.cfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/examples/tweet/app/views/users/new.cfm -------------------------------------------------------------------------------- /examples/tweet/app/views/users/show.cfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/examples/tweet/app/views/users/show.cfm -------------------------------------------------------------------------------- /examples/tweet/box.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/examples/tweet/box.json -------------------------------------------------------------------------------- /examples/tweet/config/CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/examples/tweet/config/CLAUDE.md -------------------------------------------------------------------------------- /examples/tweet/config/app.cfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/examples/tweet/config/app.cfm -------------------------------------------------------------------------------- /examples/tweet/config/environment.cfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/examples/tweet/config/environment.cfm -------------------------------------------------------------------------------- /examples/tweet/config/routes.cfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/examples/tweet/config/routes.cfm -------------------------------------------------------------------------------- /examples/tweet/config/settings.cfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/examples/tweet/config/settings.cfm -------------------------------------------------------------------------------- /examples/tweet/config/testing/settings.cfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/examples/tweet/config/testing/settings.cfm -------------------------------------------------------------------------------- /examples/tweet/plugins/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/tweet/plugins/CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/examples/tweet/plugins/CLAUDE.md -------------------------------------------------------------------------------- /examples/tweet/public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/examples/tweet/public/.htaccess -------------------------------------------------------------------------------- /examples/tweet/public/Application.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/examples/tweet/public/Application.cfc -------------------------------------------------------------------------------- /examples/tweet/public/CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/examples/tweet/public/CLAUDE.md -------------------------------------------------------------------------------- /examples/tweet/public/files/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/tweet/public/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/tweet/public/index.bxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/examples/tweet/public/index.bxm -------------------------------------------------------------------------------- /examples/tweet/public/index.cfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/examples/tweet/public/index.cfm -------------------------------------------------------------------------------- /examples/tweet/public/javascripts/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/tweet/public/stylesheets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/tweet/public/urlrewrite.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/examples/tweet/public/urlrewrite.xml -------------------------------------------------------------------------------- /examples/tweet/server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/examples/tweet/server.json -------------------------------------------------------------------------------- /examples/tweet/tests/CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/examples/tweet/tests/CLAUDE.md -------------------------------------------------------------------------------- /examples/tweet/tests/_assets/controllers/Controller.cfc: -------------------------------------------------------------------------------- 1 | component extends="wheels.Controller" { 2 | 3 | } -------------------------------------------------------------------------------- /examples/tweet/tests/_assets/files/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/tweet/tests/_assets/migrator/migrations/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/tweet/tests/_assets/models/Model.cfc: -------------------------------------------------------------------------------- 1 | component extends="wheels.Model" { 2 | 3 | 4 | } 5 | -------------------------------------------------------------------------------- /examples/tweet/tests/_assets/plugins/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/tweet/tests/_assets/views/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/tweet/tests/_assets/views/helpers.cfm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/tweet/tests/_assets/views/layout.cfm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/tweet/tests/populate.cfm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/tweet/tests/routes.cfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/examples/tweet/tests/routes.cfm -------------------------------------------------------------------------------- /examples/tweet/tests/runner.cfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/examples/tweet/tests/runner.cfm -------------------------------------------------------------------------------- /examples/tweet/vendor/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/tweet/wheels-base-template-3.0.0-SNAPSHOT.rc.1+1053-20251021194426: -------------------------------------------------------------------------------- 1 | Built on Tue Oct 21 19:44:26 UTC 2025 2 | -------------------------------------------------------------------------------- /server.json: -------------------------------------------------------------------------------- 1 | { 2 | "openbrowser":"false" 3 | } 4 | -------------------------------------------------------------------------------- /templates/base/box.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/templates/base/box.json -------------------------------------------------------------------------------- /templates/base/src/AGENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/templates/base/src/AGENTS.md -------------------------------------------------------------------------------- /templates/base/src/CFConfig.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/base/src/CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/templates/base/src/CLAUDE.md -------------------------------------------------------------------------------- /templates/base/src/app/CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/templates/base/src/app/CLAUDE.md -------------------------------------------------------------------------------- /templates/base/src/app/events/CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/templates/base/src/app/events/CLAUDE.md -------------------------------------------------------------------------------- /templates/base/src/app/events/onabort.cfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/templates/base/src/app/events/onabort.cfm -------------------------------------------------------------------------------- /templates/base/src/app/events/onerror.cfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/templates/base/src/app/events/onerror.cfm -------------------------------------------------------------------------------- /templates/base/src/app/global/CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/templates/base/src/app/global/CLAUDE.md -------------------------------------------------------------------------------- /templates/base/src/app/jobs/CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/templates/base/src/app/jobs/CLAUDE.md -------------------------------------------------------------------------------- /templates/base/src/app/lib/.keep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /templates/base/src/app/lib/CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/templates/base/src/app/lib/CLAUDE.md -------------------------------------------------------------------------------- /templates/base/src/app/mailers/CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/templates/base/src/app/mailers/CLAUDE.md -------------------------------------------------------------------------------- /templates/base/src/app/migrator/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/base/src/app/migrator/CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/templates/base/src/app/migrator/CLAUDE.md -------------------------------------------------------------------------------- /templates/base/src/app/migrator/migrations/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/base/src/app/models/CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/templates/base/src/app/models/CLAUDE.md -------------------------------------------------------------------------------- /templates/base/src/app/models/Model.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/templates/base/src/app/models/Model.cfc -------------------------------------------------------------------------------- /templates/base/src/app/snippets/CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/templates/base/src/app/snippets/CLAUDE.md -------------------------------------------------------------------------------- /templates/base/src/app/views/CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/templates/base/src/app/views/CLAUDE.md -------------------------------------------------------------------------------- /templates/base/src/app/views/helpers.cfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/templates/base/src/app/views/helpers.cfm -------------------------------------------------------------------------------- /templates/base/src/app/views/layout.cfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/templates/base/src/app/views/layout.cfm -------------------------------------------------------------------------------- /templates/base/src/box.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/templates/base/src/box.json -------------------------------------------------------------------------------- /templates/base/src/config/CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/templates/base/src/config/CLAUDE.md -------------------------------------------------------------------------------- /templates/base/src/config/app.cfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/templates/base/src/config/app.cfm -------------------------------------------------------------------------------- /templates/base/src/config/environment.cfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/templates/base/src/config/environment.cfm -------------------------------------------------------------------------------- /templates/base/src/config/routes.cfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/templates/base/src/config/routes.cfm -------------------------------------------------------------------------------- /templates/base/src/config/settings.cfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/templates/base/src/config/settings.cfm -------------------------------------------------------------------------------- /templates/base/src/db/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/base/src/plugins/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/base/src/plugins/CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/templates/base/src/plugins/CLAUDE.md -------------------------------------------------------------------------------- /templates/base/src/public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/templates/base/src/public/.htaccess -------------------------------------------------------------------------------- /templates/base/src/public/Application.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/templates/base/src/public/Application.cfc -------------------------------------------------------------------------------- /templates/base/src/public/CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/templates/base/src/public/CLAUDE.md -------------------------------------------------------------------------------- /templates/base/src/public/files/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/base/src/public/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/base/src/public/index.bxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/templates/base/src/public/index.bxm -------------------------------------------------------------------------------- /templates/base/src/public/index.cfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/templates/base/src/public/index.cfm -------------------------------------------------------------------------------- /templates/base/src/public/javascripts/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/base/src/public/stylesheets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/base/src/public/urlrewrite.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/templates/base/src/public/urlrewrite.xml -------------------------------------------------------------------------------- /templates/base/src/server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/templates/base/src/server.json -------------------------------------------------------------------------------- /templates/base/src/tests/CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/templates/base/src/tests/CLAUDE.md -------------------------------------------------------------------------------- /templates/base/src/tests/_assets/controllers/Controller.cfc: -------------------------------------------------------------------------------- 1 | component extends="wheels.Controller" { 2 | 3 | } -------------------------------------------------------------------------------- /templates/base/src/tests/_assets/files/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/base/src/tests/_assets/migrator/migrations/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/base/src/tests/_assets/models/Model.cfc: -------------------------------------------------------------------------------- 1 | component extends="wheels.Model" { 2 | 3 | 4 | } 5 | -------------------------------------------------------------------------------- /templates/base/src/tests/_assets/plugins/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/base/src/tests/_assets/views/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/base/src/tests/_assets/views/helpers.cfm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/base/src/tests/_assets/views/layout.cfm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/base/src/tests/populate.cfm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/base/src/tests/routes.cfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/templates/base/src/tests/routes.cfm -------------------------------------------------------------------------------- /templates/base/src/tests/runner.cfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/templates/base/src/tests/runner.cfm -------------------------------------------------------------------------------- /templates/base/src/vendor/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test-artifacts/test-results.zip: -------------------------------------------------------------------------------- 1 | Not Found -------------------------------------------------------------------------------- /tests/CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tests/CLAUDE.md -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/_assets/controllers/Controller.cfc: -------------------------------------------------------------------------------- 1 | component extends="wheels.Controller" { 2 | 3 | } -------------------------------------------------------------------------------- /tests/_assets/files/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/_assets/migrator/migrations/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/_assets/models/Model.cfc: -------------------------------------------------------------------------------- 1 | component extends="wheels.Model" { 2 | 3 | 4 | } 5 | -------------------------------------------------------------------------------- /tests/_assets/plugins/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/_assets/views/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/_assets/views/helpers.cfm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/_assets/views/layout.cfm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/populate.cfm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/routes.cfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tests/routes.cfm -------------------------------------------------------------------------------- /tests/runner.cfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tests/runner.cfm -------------------------------------------------------------------------------- /tests/specs/functions/ExampleSpec.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tests/specs/functions/ExampleSpec.cfc -------------------------------------------------------------------------------- /tools/build/base/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/build/base/.gitignore -------------------------------------------------------------------------------- /tools/build/base/.mcp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/build/base/.mcp.json -------------------------------------------------------------------------------- /tools/build/base/.opencode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/build/base/.opencode.json -------------------------------------------------------------------------------- /tools/build/base/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/build/base/README.md -------------------------------------------------------------------------------- /tools/build/base/box.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/build/base/box.json -------------------------------------------------------------------------------- /tools/build/base/config/app.cfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/build/base/config/app.cfm -------------------------------------------------------------------------------- /tools/build/base/config/settings.cfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/build/base/config/settings.cfm -------------------------------------------------------------------------------- /tools/build/base/server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/build/base/server.json -------------------------------------------------------------------------------- /tools/build/cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/build/cli/README.md -------------------------------------------------------------------------------- /tools/build/cli/box.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/build/cli/box.json -------------------------------------------------------------------------------- /tools/build/core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/build/core/README.md -------------------------------------------------------------------------------- /tools/build/core/box.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/build/core/box.json -------------------------------------------------------------------------------- /tools/build/lib/ant-contrib-1.0b3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/build/lib/ant-contrib-1.0b3.jar -------------------------------------------------------------------------------- /tools/build/scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/build/scripts/README.md -------------------------------------------------------------------------------- /tools/build/scripts/build-base.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/build/scripts/build-base.sh -------------------------------------------------------------------------------- /tools/build/scripts/build-cli.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/build/scripts/build-cli.sh -------------------------------------------------------------------------------- /tools/build/scripts/build-core.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/build/scripts/build-core.sh -------------------------------------------------------------------------------- /tools/build/scripts/build-starterApp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/build/scripts/build-starterApp.sh -------------------------------------------------------------------------------- /tools/build/scripts/prepare-base.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/build/scripts/prepare-base.sh -------------------------------------------------------------------------------- /tools/build/scripts/prepare-cli.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/build/scripts/prepare-cli.sh -------------------------------------------------------------------------------- /tools/build/scripts/prepare-core.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/build/scripts/prepare-core.sh -------------------------------------------------------------------------------- /tools/build/scripts/prepare-starterApp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/build/scripts/prepare-starterApp.sh -------------------------------------------------------------------------------- /tools/build/scripts/publish-to-forgebox.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/build/scripts/publish-to-forgebox.sh -------------------------------------------------------------------------------- /tools/docker/.gitignore: -------------------------------------------------------------------------------- 1 | testui/node_modules 2 | -------------------------------------------------------------------------------- /tools/docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/docker/README.md -------------------------------------------------------------------------------- /tools/docker/adobe2018/CFConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/docker/adobe2018/CFConfig.json -------------------------------------------------------------------------------- /tools/docker/adobe2018/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/docker/adobe2018/Dockerfile -------------------------------------------------------------------------------- /tools/docker/adobe2018/box.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/docker/adobe2018/box.json -------------------------------------------------------------------------------- /tools/docker/adobe2018/lib/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/docker/adobe2018/server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/docker/adobe2018/server.json -------------------------------------------------------------------------------- /tools/docker/adobe2018/settings.cfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/docker/adobe2018/settings.cfm -------------------------------------------------------------------------------- /tools/docker/adobe2021/CFConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/docker/adobe2021/CFConfig.json -------------------------------------------------------------------------------- /tools/docker/adobe2021/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/docker/adobe2021/Dockerfile -------------------------------------------------------------------------------- /tools/docker/adobe2021/box.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/docker/adobe2021/box.json -------------------------------------------------------------------------------- /tools/docker/adobe2021/lib/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/docker/adobe2021/server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/docker/adobe2021/server.json -------------------------------------------------------------------------------- /tools/docker/adobe2021/settings.cfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/docker/adobe2021/settings.cfm -------------------------------------------------------------------------------- /tools/docker/adobe2023/CFConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/docker/adobe2023/CFConfig.json -------------------------------------------------------------------------------- /tools/docker/adobe2023/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/docker/adobe2023/Dockerfile -------------------------------------------------------------------------------- /tools/docker/adobe2023/box.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/docker/adobe2023/box.json -------------------------------------------------------------------------------- /tools/docker/adobe2023/lib/.keep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tools/docker/adobe2023/server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/docker/adobe2023/server.json -------------------------------------------------------------------------------- /tools/docker/adobe2023/settings.cfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/docker/adobe2023/settings.cfm -------------------------------------------------------------------------------- /tools/docker/adobe2025/CFConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/docker/adobe2025/CFConfig.json -------------------------------------------------------------------------------- /tools/docker/adobe2025/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/docker/adobe2025/Dockerfile -------------------------------------------------------------------------------- /tools/docker/adobe2025/box.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/docker/adobe2025/box.json -------------------------------------------------------------------------------- /tools/docker/adobe2025/lib/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/docker/adobe2025/server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/docker/adobe2025/server.json -------------------------------------------------------------------------------- /tools/docker/adobe2025/settings.cfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/docker/adobe2025/settings.cfm -------------------------------------------------------------------------------- /tools/docker/boxlang/CFConfig-actions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/docker/boxlang/CFConfig-actions.json -------------------------------------------------------------------------------- /tools/docker/boxlang/CFConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/docker/boxlang/CFConfig.json -------------------------------------------------------------------------------- /tools/docker/boxlang/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/docker/boxlang/Dockerfile -------------------------------------------------------------------------------- /tools/docker/boxlang/box.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/docker/boxlang/box.json -------------------------------------------------------------------------------- /tools/docker/boxlang/lib/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/docker/boxlang/server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/docker/boxlang/server.json -------------------------------------------------------------------------------- /tools/docker/boxlang/settings.cfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/docker/boxlang/settings.cfm -------------------------------------------------------------------------------- /tools/docker/github/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/docker/github/README.md -------------------------------------------------------------------------------- /tools/docker/github/Tasks.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/docker/github/Tasks.cfc -------------------------------------------------------------------------------- /tools/docker/github/core-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/docker/github/core-tests.sh -------------------------------------------------------------------------------- /tools/docker/github/db-up.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/docker/github/db-up.sh -------------------------------------------------------------------------------- /tools/docker/github/functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/docker/github/functions.sh -------------------------------------------------------------------------------- /tools/docker/github/server-up.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/docker/github/server-up.sh -------------------------------------------------------------------------------- /tools/docker/github/wait-for-it.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/docker/github/wait-for-it.sh -------------------------------------------------------------------------------- /tools/docker/lucee5/CFConfig-actions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/docker/lucee5/CFConfig-actions.json -------------------------------------------------------------------------------- /tools/docker/lucee5/CFConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/docker/lucee5/CFConfig.json -------------------------------------------------------------------------------- /tools/docker/lucee5/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/docker/lucee5/Dockerfile -------------------------------------------------------------------------------- /tools/docker/lucee5/box.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/docker/lucee5/box.json -------------------------------------------------------------------------------- /tools/docker/lucee5/lib/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/docker/lucee5/server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/docker/lucee5/server.json -------------------------------------------------------------------------------- /tools/docker/lucee5/settings.cfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/docker/lucee5/settings.cfm -------------------------------------------------------------------------------- /tools/docker/lucee6/CFConfig-actions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/docker/lucee6/CFConfig-actions.json -------------------------------------------------------------------------------- /tools/docker/lucee6/CFConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/docker/lucee6/CFConfig.json -------------------------------------------------------------------------------- /tools/docker/lucee6/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/docker/lucee6/Dockerfile -------------------------------------------------------------------------------- /tools/docker/lucee6/box.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/docker/lucee6/box.json -------------------------------------------------------------------------------- /tools/docker/lucee6/lib/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/docker/lucee6/server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/docker/lucee6/server.json -------------------------------------------------------------------------------- /tools/docker/lucee6/settings.cfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/docker/lucee6/settings.cfm -------------------------------------------------------------------------------- /tools/docker/lucee7/CFConfig-actions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/docker/lucee7/CFConfig-actions.json -------------------------------------------------------------------------------- /tools/docker/lucee7/CFConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/docker/lucee7/CFConfig.json -------------------------------------------------------------------------------- /tools/docker/lucee7/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/docker/lucee7/Dockerfile -------------------------------------------------------------------------------- /tools/docker/lucee7/box.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/docker/lucee7/box.json -------------------------------------------------------------------------------- /tools/docker/lucee7/server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/docker/lucee7/server.json -------------------------------------------------------------------------------- /tools/docker/lucee7/settings.cfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/docker/lucee7/settings.cfm -------------------------------------------------------------------------------- /tools/docker/sqlserver/APPLE_SILICON.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/docker/sqlserver/APPLE_SILICON.md -------------------------------------------------------------------------------- /tools/docker/sqlserver/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/docker/sqlserver/Dockerfile -------------------------------------------------------------------------------- /tools/docker/sqlserver/Dockerfile_CICD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/docker/sqlserver/Dockerfile_CICD -------------------------------------------------------------------------------- /tools/docker/sqlserver/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/docker/sqlserver/README.md -------------------------------------------------------------------------------- /tools/docker/sqlserver/init-db.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/docker/sqlserver/init-db.sh -------------------------------------------------------------------------------- /tools/docker/testui/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/docker/testui/.env -------------------------------------------------------------------------------- /tools/docker/testui/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/docker/testui/.gitignore -------------------------------------------------------------------------------- /tools/docker/testui/DEVELOPMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/docker/testui/DEVELOPMENT.md -------------------------------------------------------------------------------- /tools/docker/testui/DOCKER-INTEGRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/docker/testui/DOCKER-INTEGRATION.md -------------------------------------------------------------------------------- /tools/docker/testui/DOCKER-README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/docker/testui/DOCKER-README.md -------------------------------------------------------------------------------- /tools/docker/testui/DOCKER-USAGE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/docker/testui/DOCKER-USAGE.md -------------------------------------------------------------------------------- /tools/docker/testui/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/docker/testui/Dockerfile -------------------------------------------------------------------------------- /tools/docker/testui/Dockerfile.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/docker/testui/Dockerfile.dev -------------------------------------------------------------------------------- /tools/docker/testui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/docker/testui/README.md -------------------------------------------------------------------------------- /tools/docker/testui/docker-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/docker/testui/docker-build.sh -------------------------------------------------------------------------------- /tools/docker/testui/docker-compose.dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/docker/testui/docker-compose.dev.yml -------------------------------------------------------------------------------- /tools/docker/testui/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/docker/testui/docker-entrypoint.sh -------------------------------------------------------------------------------- /tools/docker/testui/docker-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/docker/testui/docker-test.sh -------------------------------------------------------------------------------- /tools/docker/testui/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/docker/testui/index.html -------------------------------------------------------------------------------- /tools/docker/testui/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/docker/testui/nginx.conf -------------------------------------------------------------------------------- /tools/docker/testui/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/docker/testui/package-lock.json -------------------------------------------------------------------------------- /tools/docker/testui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/docker/testui/package.json -------------------------------------------------------------------------------- /tools/docker/testui/proxy_buffer_size.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/docker/testui/proxy_buffer_size.conf -------------------------------------------------------------------------------- /tools/docker/testui/public/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/docker/testui/public/error.html -------------------------------------------------------------------------------- /tools/docker/testui/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/docker/testui/public/favicon.ico -------------------------------------------------------------------------------- /tools/docker/testui/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/docker/testui/src/App.vue -------------------------------------------------------------------------------- /tools/docker/testui/src/assets/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/docker/testui/src/assets/main.css -------------------------------------------------------------------------------- /tools/docker/testui/src/env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/docker/testui/src/env.d.ts -------------------------------------------------------------------------------- /tools/docker/testui/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/docker/testui/src/main.ts -------------------------------------------------------------------------------- /tools/docker/testui/src/router/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/docker/testui/src/router/index.ts -------------------------------------------------------------------------------- /tools/docker/testui/src/shims-vue.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/docker/testui/src/shims-vue.d.ts -------------------------------------------------------------------------------- /tools/docker/testui/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/docker/testui/src/types.ts -------------------------------------------------------------------------------- /tools/docker/testui/src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/docker/testui/src/types/index.ts -------------------------------------------------------------------------------- /tools/docker/testui/src/utils/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/docker/testui/src/utils/api.ts -------------------------------------------------------------------------------- /tools/docker/testui/src/utils/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/docker/testui/src/utils/theme.ts -------------------------------------------------------------------------------- /tools/docker/testui/supervisord.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/docker/testui/supervisord.conf -------------------------------------------------------------------------------- /tools/docker/testui/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/docker/testui/tsconfig.json -------------------------------------------------------------------------------- /tools/docker/testui/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/docker/testui/tsconfig.node.json -------------------------------------------------------------------------------- /tools/docker/testui/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/docker/testui/vite.config.ts -------------------------------------------------------------------------------- /tools/installer/macos/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/installer/macos/.gitignore -------------------------------------------------------------------------------- /tools/installer/macos/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/installer/macos/Info.plist -------------------------------------------------------------------------------- /tools/installer/macos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/installer/macos/README.md -------------------------------------------------------------------------------- /tools/installer/macos/build-swift.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/installer/macos/build-swift.sh -------------------------------------------------------------------------------- /tools/installer/macos/create-dmg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/installer/macos/create-dmg.sh -------------------------------------------------------------------------------- /tools/installer/macos/install-wheels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/installer/macos/install-wheels -------------------------------------------------------------------------------- /tools/installer/windows/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/installer/windows/README.md -------------------------------------------------------------------------------- /tools/scripts/integration-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/scripts/integration-test.sh -------------------------------------------------------------------------------- /tools/vscode-ext/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/vscode-ext/.gitignore -------------------------------------------------------------------------------- /tools/vscode-ext/.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/vscode-ext/.vscodeignore -------------------------------------------------------------------------------- /tools/vscode-ext/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/vscode-ext/CHANGELOG.md -------------------------------------------------------------------------------- /tools/vscode-ext/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/vscode-ext/LICENSE -------------------------------------------------------------------------------- /tools/vscode-ext/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/vscode-ext/README.md -------------------------------------------------------------------------------- /tools/vscode-ext/assets/wheels_logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/vscode-ext/assets/wheels_logo.jpg -------------------------------------------------------------------------------- /tools/vscode-ext/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/vscode-ext/package.json -------------------------------------------------------------------------------- /tools/vscode-ext/src/extension.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheels-dev/wheels/HEAD/tools/vscode-ext/src/extension.js -------------------------------------------------------------------------------- /tools/workspace/.keep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------