Update tutorials/curriculum
(FOLIO-1348)
|
|
| Status: | Closed |
| Project: | FOLIO |
| Components: | None |
| Affects versions: | None |
| Fix versions: | None | Parent: | Update tutorials/curriculum |
| Type: | Sub-task | Priority: | P3 |
| Reporter: | David Crossley | Assignee: | David Crossley |
| Resolution: | Done | Votes: | 0 |
| Labels: | devdoc | ||
| Remaining Estimate: | Not Specified | ||
| Time Spent: | Not Specified | ||
| Original estimate: | Not Specified | ||
| Issue links: |
|
||||||||||||
| Sprint: | |||||||||||||
| Description |
|
Also Lesson-04 needs review of Stripes material, and either new screenshots or remove them: https://dev.folio.org/tutorials/curriculum/04-deploy-test-stripes-module/ |
| Comments |
| Comment by David Crossley [ 11/Sep/18 ] |
|
There are some new notes in
|
| Comment by Maria Fronczak [ 15/Oct/18 ] |
|
Hi there, I've gone through the curriculum and it's not in a bad shape, although lessons 4 & 5 are indeed a bit outdated. I managed to tweak package.json and make it work. If it is so, something along these lines could be used in Lesson 5 (tested out):
{
"scripts": {
"build": "stripes build stripes.config.js",
"stripes": "stripes",
"start": "NODE_ENV=development stripes serve stripes.config.js"
},
"dependencies": {
"@folio/stripes": "^1.0.0",
"@folio/trivial": "^1.2.0",
"@folio/users": "^2.17.0"
},
"devDependencies": {
"@folio/stripes-cli": "^1.5.0"
}
}
And, to be consistent, package.json in Lesson 4 could be updated to:
{
"scripts": {
"start": "NODE_ENV=development stripes serve stripes.config.js"
},
"dependencies": {
"@folio/stripes": "^1.0.0",
"@folio/trivial": "^1.2.0"
},
"devDependencies": {
"@folio/stripes-cli": "^1.5.0"
}
}
|
| Comment by David Crossley [ 16/Oct/18 ] |
|
Thanks. This is very helpful. |
| Comment by David Crossley [ 22/Nov/18 ] |
|
Done. Lesson 04 and Lesson 05 have now been overhauled. We are now back to a working tutorial. Hooray. |