Start by setting up your dev environment from
https://github.com/failure-driven/bdd-workshop
Use Code Spaces for a seamless experience.
code
->codespaces
->Create codespace on main
make
# ⚠️ Important ⚠️ manually use correct version of rvm ruby
rvm install $(cat .ruby-version) && rvm use .
make build # runs tests
make setup # sets up DB and runs dev server
make dev # run dev server
# codespaces will open up a tab to view in the browser window
OR
Note: we will not troubleshoot this option.
git clone git@github.com:failure-driven/bdd-workshop.git
cd bdd-workshop
make
make build # runs tests
make setup # sets up DB and runs dev server
make dev # run dev server
open http://localhost:3000 # have a go in the browser
- Lab_00.md - Guestbook walk through
- Lab_01.md - Mandatory body and name in message
- Lab_02.md - Text Generation
- Lab_03.md - AI Text Generation
- Lab_04.md - Text Generation in background job
- Lab_05.md - Dynamic async loading UI
END