Add Grails 8 creating-your-first-grails-app guide. - #532
Conversation
|
@jamesfredley let me know if there's any scope for improvements |
| - 'integration-tests' | ||
| - 'scaffolding' | ||
| - 'getting-started' | ||
| - 'crud' |
There was a problem hiding this comment.
Why not mention url-mappings?
There was a problem hiding this comment.
Added url-mappings to the v8 tags.
Thanks!
|
@jamesfredley Updated with the Asset Pipeline chapter as discussed |
|
Integration test fails. This is the real merge blocker. Companion CI on the current head ( https://github.com/sanjana2505006/creating-your-first-grails-app/actions/runs/30950958344
The only spec: @Integration
class HomePageSpec extends ContainerGebSpec {
void 'home page lists seeded vehicles'() {
when:
go '/'
then:
title == 'Home Page'
$('h1').text().contains('Welcome')
$('li a', text: contains('Pickup')).size() == 1
}
}It never got as far as Geb. Spring failed to start the test context: Likely cause: That matters because this guide tells readers to run No commit has been pushed since that 2026-08-04 failure. |
Adds the Grails 8 creating-your-first-grails-app guide under
guides/creating-your-first-grails-app/v8/(AsciiDoc chapters + vendored snippets fromcomplete/) and registersversions['8']inconf/guides.yml.Companion to grails-guides/creating-your-first-grails-app#65