Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit65d71d8

Browse files
committed
update readme and development docs
Signed-off-by: shmck <shawn.j.mckay@gmail.com>
1 parente615476 commit65d71d8

File tree

3 files changed

+45
-51
lines changed

3 files changed

+45
-51
lines changed

‎README.md

Lines changed: 18 additions & 51 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
</a>
55
</p>
66
<h1align="center">
7-
CodeRoad VSCode
7+
CodeRoad
88
</h1>
99

1010
<palign="center">
@@ -13,74 +13,41 @@ CodeRoad VSCode
1313
<ahref="https://marketplace.visualstudio.com/items?itemName=CodeRoad.coderoad"alt="Downloads"><imgsrc="https://vsmarketplacebadge.apphb.com/downloads/Coderoad.coderoad.svg" /></a>
1414
</p>
1515

16-
CodeRoad is a VSCode extension that allows you to play interactive coding tutorials in your editor.
16+
CodeRoad is a VSCode extension that allows you tocreate andplay interactive coding tutorials in your editor.
1717

1818
![CodeRoad Example](./docs/static/gif/coderoad-example.gif)
1919

20-
##Why
21-
22-
Interactive learning is the most effective way to gain new skills and knowledge. CodeRoad aims to help tutorial creators develop and share interactive content with the community.
23-
24-
For learners, there are a number of advantages to running tutorials inside VSCode:
25-
26-
- learn in a real world coding environment
27-
- get rapid feedback on save and helpful error messages
28-
- users own the code, and can build a Git timeline and deploy a portfolio
20+
##[Documentation](https://coderoad.github.io/docs/overview)
2921

3022
##Getting Started
3123

32-
###Start
33-
34-
To start the extension, inside VSCode:
35-
36-
- open an empty VSCode workspace (an empty folder)
37-
- launch the app from the VSCode command palette:
38-
- select “View” > “Command Palette” from the top panel OR press`cmd/ctrl + shift + P`
39-
- in the command palette, search for and run`CodeRoad:Start`
40-
- a webview should appear on the right side of your editor. Click "Start"
41-
42-
###Install
43-
44-
Install CodeRoad from[this link in the VSCode Marketplace](https://marketplace.visualstudio.com/items?itemName=CodeRoad.coderoad).
45-
46-
- You may need to reload the window (`ctrl/cmd + R`)
47-
- See["Start"](#start) to get started.
48-
4924
###Requirements
5025

5126
- OS: MacOS, Windows, Linux
5227
- VSCode 1.39.2+
53-
- Node.js 10+
5428
- Git
5529

56-
##How CodeRoad Works
57-
58-
Read more in the docs about[how CodeRoad works](https://coderoad.github.io/docs/how-coderoad-works).
59-
60-
##Creating Tutorials
61-
62-
Build and share your own interactive tutorials.
63-
64-
Learn more about[how tutorials area created](https://coderoad.github.io/docs/build-tutorial).
65-
66-
##Editing Tutorials
30+
###Install
6731

68-
Tutorials can be edited directly as markdown on Github.
32+
1. install CodeRoad from[the VSCode Marketplace](https://marketplace.visualstudio.com/items?itemName=CodeRoad.coderoad).
33+
2. reload the window (`ctrl/cmd + R`) to get started.
6934

70-
##Development
35+
###Start
7136

72-
Torun the extension locally:
37+
Tostart the extension, inside VSCode:
7338

74-
-copy environmental variables from`/web-app/.env.example` as`/web-app/.env`
75-
-install dependencies with`yarn install-all`
76-
- buildtheextension with`yarn build`
77-
- open the extension withthevscode extension debugger by pressing F5. In the new window, openCodeRoad.
39+
-Open an**empty** VSCode workspace (a project folder)
40+
-Launch the app from the VSCode command palette. How?
41+
- select “View” > “Command Palette” fromthetop panel OR press`cmd/ctrl + shift + P`
42+
- inthecommand palette popup, search for and run`CodeRoad:Start`
7843

79-
To test a packaged build locally:
44+
##Contact & Support
8045

81-
- if on Mac, ensure you have[VSCode command line tools](https://code.visualstudio.com/docs/setup/mac#_launching-from-the-command-line) installed
82-
- run`yarn package`. It will build the extension and install it locally.
83-
- open a new vscode window and launch the new version of CodeRoad
46+
- Create a GitHub issue for bug reports, feature requests, or questions
47+
- See[the docs](http://coderoad.github.io/docs/development) on how to run this project locally for development
48+
- Leave[a review](https://marketplace.visualstudio.com/items?itemName=CodeRoad.coderoad&ssr=false#review-details) in the VSCode Marketplace
49+
- Add a ⭐️ star on GitHub to support the project!
50+
- Reach out at`coderoadapp@gmail.com`
8451

8552
##Contributing
8653

‎docs/docs/development.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
---
2+
id:development
3+
title:Development
4+
sidebar_label:Development
5+
---
6+
7+
##Feature Request
8+
9+
Post an issue. Let's chat.
10+
11+
##Development
12+
13+
To run the extension locally:
14+
15+
- copy environmental variables from`/web-app/.env.example` as`/web-app/.env`
16+
- install dependencies with`yarn install-all`
17+
- build the extension with`yarn build`
18+
- open the extension with the vscode extension debugger by pressing F5. In the new window, open CodeRoad.
19+
20+
###Testing Builds
21+
22+
To test a packaged build locally:
23+
24+
- if on Mac, ensure you have[VSCode command line tools](https://code.visualstudio.com/docs/setup/mac#_launching-from-the-command-line) installed
25+
- run`yarn package`. It will build the extension and install it locally.
26+
- open a new vscode window and launch the new version of CodeRoad

‎docs/sidebars.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ module.exports = {
1313
'examples',
1414
'starters',
1515
],
16+
Development:['development'],
1617
More:['inspiration'],
1718
},
1819
}

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp