Skip to content

Commit b1e4075

Browse files
bpamiriclaude
andcommitted
Update CLI template options for 3.0 stable release
- Change default template from 3.0.0-rc to 3.0 stable - Add Bleeding Edge template option - Remove deprecated 2.5.x template option - Update documentation comments Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 05504b1 commit b1e4075

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

cli/src/commands/wheels/generate/app-wizard.cfc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -156,8 +156,8 @@ component aliases="wheels g app-wizard, wheels new" extends="../base" {
156156

157157
var template = multiselect( 'Which Wheels Template shall we use? ' )
158158
.options( [
159-
{value: 'wheels-base-template@^3.0.0-rc.1', display: '3.0.0-rc - Wheels Base Template - Release Candidate', selected: true},
160-
{value: 'cfwheels-base-template', display: '2.5.x - Wheels Base Template - Stable Release'},
159+
{value: 'wheels-base-template@^3.0.0', display: '3.0 - Wheels Base Template - Stable', selected: true},
160+
{value: 'wheels-base-template@BE', display: 'Bleeding Edge - Wheels Base Template'},
161161
{value: 'cfwheels-template-htmx-alpine-simple', display: 'Wheels Template - HTMX - Alpine.js - Simple.css'},
162162
{value: 'wheels-starter-app', display: 'Wheels Starter App'},
163163
{value: 'cfwheels-todomvc-htmx', display: 'Wheels - TodoMVC - HTMX - Demo App'},

cli/src/commands/wheels/generate/app.cfc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414
* {code}
1515
*
1616
* Here are the basic templates that are available for you that come from ForgeBox
17-
* - Wheels Base Template - 3.0 Bleeding Edge (default)
18-
* - CFWheels Base Template - 2.5 Stable
17+
* - Wheels Base Template - 3.0 Stable (default)
18+
* - Wheels Base Template - Bleeding Edge
1919
* - Wheels Template - HelloWorld
2020
* - Wheels Template - HelloDynamic
2121
* - Wheels Template - HelloPages
@@ -55,7 +55,7 @@ component aliases="wheels g app" extends="../base" {
5555

5656
/**
5757
* @name The name of the app you want to create
58-
* @template The name of the app template to generate (or an endpoint ID like a forgebox slug). Default is Base@BE (Bleeding Edge)
58+
* @template The name of the app template to generate (or an endpoint ID like a forgebox slug). Default is Bleeding Edge
5959
* @directory The directory to create the app in
6060
* @reloadPassword The reload passwrod to set for the app
6161
* @datasourceName The datasource name to set for the app

0 commit comments

Comments
 (0)