@@ -6,13 +6,9 @@ categories:
6
6
-builder-coderoad
7
7
---
8
8
9
- Get setup quickly with CodeRoad:either [ clone a tutorial repo ] ( https://git-scm.com/docs/git-clone ) or use the * CodeRoad-CLI * .
9
+ Get setup quickly with CodeRoad:open the ** builder-coderoad ** plugin in an empty directory .
10
10
11
- In your development directory, run** create** with your new package name.
12
-
13
- > coderoad create $YOUR-PACKAGE-NAME$
14
-
15
- Running** create** generates:
11
+ Filling out the first page should create:
16
12
17
13
* an example** tutorial.md** , which imports several tutorial files
18
14
* an example** test** directory with a few example tests
@@ -22,13 +18,11 @@ Running **create** generates:
22
18
{
23
19
"name" :" coderoad-$TUTORIAL-NAME$" ,
24
20
"version" :" 0.1.0" ,
25
- "description" :" Coderoad tutorial" ,
26
- "author" :" Name <email> (site)" ,
27
21
"main" :" coderoad.json" ,
28
- "keywords" : [" coderoad " , " tutorial " ],
29
- "dependencies" : {
30
- "mocha-coderoad" : " ^0.3.1 "
31
- } ,
22
+ "keywords" : [
23
+ " coderoad " ,
24
+ " tutorial "
25
+ ] ,
32
26
"coderoad" : {
33
27
"dir" :" tutorial" ,
34
28
"testSuffix" :" .spec.js" ,
@@ -37,11 +31,9 @@ Running **create** generates:
37
31
}
38
32
```
39
33
40
- We'll learn more about these configurations when it's time to[ publish] ( #publish ) .
41
-
42
- Update changes to your tutorial by running** build** . This will generate a* coderoad.json* data file used by* atom-coderoad* .
34
+ We'll learn more about these configurations when it's time to[ publish] ( /tutorial-docs#publish ) .
43
35
44
- > coderoad build
36
+ Changes will update whenever you save a file.
45
37
46
38
###Demo Your Tutorial
47
39