Skip to content

Commit f61dbe9

Browse files
committed
update docs
1 parent 318b0a2 commit f61dbe9

15 files changed

+98
-87
lines changed

_posts/atom-coderoad/2016-01-01-explanation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ categories:
66
- atom-coderoad
77
---
88

9-
Coming soon...
9+
Atom-CodeRoad is an Atom plugin that lets you play interactive coding tutorials inside of your Atom editor.

_posts/atom-coderoad/2016-01-02-installation.md

Lines changed: 0 additions & 52 deletions
This file was deleted.
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
---
2+
title: Requirements
3+
link: requirements
4+
file: 2016-01-02-requirements.md
5+
categories:
6+
- atom-coderoad
7+
- builder-coderoad
8+
---
9+
10+
Atom-CodeRoad & Builder-CodeRoad both have several key dependencies before starting:
11+
12+
| Name | Min Version | Description |
13+
|--------|-------------|-------------|
14+
| NodeJS | >0.10.x | Check your version with `> node -v`<br /> Download the latest from [nodejs.org](/nodejs.org) |
15+
| NPM | >3.x.x< | Check your version with `> npm -v`<br /> NPM comes installed with NodeJS,<br /> and can be updated with `> npm install -g npm` |
16+
| Atom Editor | >1.6.0 | A popular code editor available at [Atom.io](//atom.io) |
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
---
2+
title: Quick Start
3+
link: install
4+
file: 2016-01-02-installation.md
5+
categories:
6+
- atom-coderoad
7+
---
8+
9+
To play a **tutorial**, you'll only need **Atom-CodeRoad**.
10+
11+
You can install Atom packages inside of Atom through the following menus: "Atom -> Preferences -> Install", and search for "atom-coderoad".
12+
13+
You may also choose to install *Atom Shell Commands* under the "Atom" menu. Shell commands allow you to quickly install Atom packages from the command line, for example: `> apm install atom-coderoad`.
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
title: Launch
3+
link: launch
4+
file: 2016-01-04-launch.md
5+
categories:
6+
- atom-coderoad
7+
---
8+
9+
Toggle open *Atom-CodeRoad* using the *Packages* menu or press *ctrl-alt-0*.
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
title: Installing Tutorials
3+
link: install-tutorial
4+
file: 2016-01-05-install-tutorial.md
5+
categories:
6+
- atom-coderoad
7+
---
8+
9+
To install a tutorial, setup a *package.json* file and save the tutorial as a dependency.
10+
11+
![Install a Tutorial](/images/docs/install-tutorial.png){: .gif}
12+
13+
You can setup a project quickly by typing `> npm init --y` into the command line in your project's folder. This agrees to all of the defaults for your newly created *package.json* file.
14+
15+
Now you can install a tutorial. Run `> npm install --save-dev $THE-PACKAGE-NAME$` to save the tutorial as a package development dependency. If you run *Atom-CodeRoad* you should see the tutorial appear on the tutorial list screen.
16+
17+
> If you are stuck at a screen that says 'install a tutorial', try updating your version of NPM to 3.x+.
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
---
2+
title: Recommended Settings
3+
link: recomended-settings
4+
file: 2016-01-06-recommended-settings.md
5+
categories:
6+
- atom-coderoad
7+
---
8+
9+
##### Enable Autosave
10+
11+
It's recommended you also enable *autosave* in Atom.
12+
13+
![Enable autosave in Atom](/images/docs/autosave.png){: .gif}
14+
15+
Tutorials run unit tests on save, *autosave* can speed up the process.

_posts/builder-coderoad/2016-01-02-installation.md

Lines changed: 0 additions & 29 deletions
This file was deleted.
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
---
2+
title: Quick Start
3+
link: install
4+
file: 2016-01-03-installation.md
5+
categories:
6+
- builder-coderoad
7+
---
8+
9+
To create a **tutorial**, you'll need **Builder-CodeRoad**.
10+
11+
You can install Atom packages inside of Atom through the following menus: "Atom -> Preferences -> Install", and search for "builder-coderoad".
12+
13+
You may also choose to install *Atom Shell Commands* under the "Atom" menu. Shell commands allow you to quickly install Atom packages from the command line, for example: `> apm install builder-coderoad`.
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
title: Launch
3+
link: launch
4+
file: 2016-01-04-launch.md
5+
categories:
6+
- builder-coderoad
7+
---
8+
9+
Toggle open *Builder-CodeRoad* using the *Packages* menu or press *ctrl-alt-9*.

_posts/builder-coderoad/2016-01-03-config.md renamed to _posts/builder-coderoad/2016-01-05-config.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Configuration
33
link: config
4-
file: 2016-01-03-config.md
4+
file: 2016-01-05-config.md
55
categories:
66
- builder-coderoad
77
---

_posts/builder-coderoad/2016-01-04-edit.md renamed to _posts/builder-coderoad/2016-01-06-edit.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Edit
33
link: edit
4-
file: 2016-01-04-edit.md
4+
file: 2016-01-06-edit.md
55
categories:
66
- builder-coderoad
77
---

_posts/builder-coderoad/2016-01-05-test.md renamed to _posts/builder-coderoad/2016-01-07-test.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Unit Tests
33
link: test
4-
file: 2016-01-05-test.md
4+
file: 2016-01-07-test.md
55
categories:
66
- builder-coderoad
77
---

_posts/builder-coderoad/2016-01-06-validate.md renamed to _posts/builder-coderoad/2016-01-08-validate.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Validate
33
link: validate
4-
file: 2016-01-06-validate.md
4+
file: 2016-01-08-validate.md
55
categories:
66
- builder-coderoad
77
---

_posts/builder-coderoad/2016-01-07-publish.md renamed to _posts/builder-coderoad/2016-01-09-publish.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Publish
33
link: publish
4-
file: 2016-01-07-publish.md
4+
file: 2016-01-09-publish.md
55
categories:
66
- builder-coderoad
77
---

0 commit comments

Comments
 (0)