Skip to content
This repository was archived by the owner on Apr 21, 2026. It is now read-only.

Commit ddc147e

Browse files
committed
Update framework name and github paths
1 parent 685b7b6 commit ddc147e

97 files changed

Lines changed: 716 additions & 716 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

CLAUDE.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@ This file provides guidance to Claude Code (claude.ai/code) when working with co
44

55
## Project Overview
66

7-
This is a CFWheels web application for the wheels.dev community website. CFWheels is a CFML (ColdFusion Markup Language) framework with an MVC architecture similar to Ruby on Rails. The site includes features for blog management, user authentication, newsletter management, testimonials, and other community features.
7+
This is a Wheels web application for the wheels.dev community website. Wheels is a CFML (ColdFusion Markup Language) framework with an MVC architecture similar to Ruby on Rails. The site includes features for blog management, user authentication, newsletter management, testimonials, and other community features.
88

99
## Technical Stack
1010

11-
- **Framework**: CFWheels (CFML framework)
11+
- **Framework**: Wheels (CFML framework)
1212
- **CLI Tools**: CommandBox for development workflow
1313
- **Database Support**: MySQL, PostgreSQL, SQL Server, H2
1414
- **CFML Engines**: Lucee 5/6, Adobe ColdFusion 2018/2021/2023
15-
- **Dependencies**:
15+
- **Dependencies**:
1616
- WireBox (for dependency injection)
1717
- TestBox (for testing)
1818
- LogBox (for logging)
@@ -188,4 +188,4 @@ Both environments use shared Docker volumes for persistent data:
188188
- `app/config/routes.cfm` - URL routing configuration
189189
- `deploy/*/docker-compose.yml` - Docker Swarm service configuration
190190
- `deploy/*/dockerfile` - Docker image build configuration
191-
- `deploy/*/server.json` - CommandBox server configuration
191+
- `deploy/*/server.json` - CommandBox server configuration

app/config/settings.cfm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
// set(dataSourcePassword="");
1919
2020
/*
21-
If you comment out the following line, CFWheels will try to determine the URL rewrite capabilities automatically.
21+
If you comment out the following line, Wheels will try to determine the URL rewrite capabilities automatically.
2222
The "URLRewriting" setting can bet set to "on", "partial" or "off".
2323
To run with "partial" rewriting, the "cgi.path_info" variable needs to be supported by the web server.
2424
To run with rewriting set to "on", you need to apply the necessary rewrite rules on the web server first.

app/controllers/web/NewsController.cfc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ component extends="app.Controllers.Controller" {
1515
try {
1616
// GitHub requires a User-Agent header or it may reject the request
1717
cfhttp(
18-
url="https://api.github.com/repos/cfwheels/cfwheels/releases"
18+
url="https://api.github.com/repos/wheels-dev/wheels/releases"
1919
method="GET"
2020
result="httpResult"){
2121
cfhttpparam(type="header" name="User-Agent" value="Wheels-dev-App")

app/migrator/migrations/20250306112302_insert_records.cfc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,8 @@ component extends="wheels.migrator.Migration" hint="insert records" {
5757
addRecord(table="features", title="Automatic Documentation", description="Use our <a href='https://guides.cfwheels.org/cfwheels-guides/working-with-cfwheels/documenting-your-code'>built in doc viewer</a> which grows with your application with only minor markup required", is_active=1, created_by=1);
5858
addRecord(table="features", title="Hybrid Development", description="Switch in and out of Wheels conventions - it's your call; Need to use a bog standard query? Go ahead!", is_active=1, created_by=1);
5959
addRecord(table="features", title="Full Documentation", description="Lots of lovely <a href='https://guides.cfwheels.org/' title='Documentation'>documentation</a> available with <a href='https://guides.cfwheels.org/cfwheels-guides/introduction/readme/beginner-tutorial-hello-world'>tutorials</a> and a <a href='https://api.cfwheels.org/''>complete API reference</a>", is_active=1, created_by=1);
60-
addRecord(table="features", title="Stay Relevant", description="CFWheels uses industry established concepts, such as <a href='https://guides.cfwheels.org/cfwheels-guides/introduction/frameworks-and-cfwheels'>MVC</a> and <a href='https://guides.cfwheels.org/cfwheels-guides/database-interaction-through-models/object-relational-mapping'>ORM</a>. These essential principles make being a polyglot a reality!", is_active=1, created_by=1);
61-
addRecord(table="features", title="A Helpful Community", description="Get in touch via our <a href='https://github.com/cfwheels/cfwheels/discussions'>GitHub Discussions</a> - we're newbie friendly and just want to help out.", is_active=1, created_by=1);
60+
addRecord(table="features", title="Stay Relevant", description="Wheels uses industry established concepts, such as <a href='https://guides.cfwheels.org/cfwheels-guides/introduction/frameworks-and-cfwheels'>MVC</a> and <a href='https://guides.cfwheels.org/cfwheels-guides/database-interaction-through-models/object-relational-mapping'>ORM</a>. These essential principles make being a polyglot a reality!", is_active=1, created_by=1);
61+
addRecord(table="features", title="A Helpful Community", description="Get in touch via our <a href='https://github.com/wheels-dev/wheels/discussions'>GitHub Discussions</a> - we're newbie friendly and just want to help out.", is_active=1, created_by=1);
6262
addRecord(table="features", title="Good Organization", description="Stop thinking about how to organize your code and deal with your business specific problems instead.", is_active=1, created_by=1);
6363

6464
} catch (any e) {

0 commit comments

Comments
 (0)