8000 Add CodeTour by bpmct · Pull Request #2412 · coder/code-server · GitHub
[go: up one dir, main page]

Skip to content

Add CodeTour #2412

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 9 commits into from
Dec 10, 2020
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Change tour directories from file to directory
`file` doesn't seem to work without a specific git reference, but adding
a reference makes the explorer not follow the tour. Unfortunately
`directory` doesn't show the directory contents so I added the directory
name and "see the explorer" to the comment.
  • Loading branch information
code-asher committed Dec 10, 2020
commit fa7d3fd4c23dcd927895cae22fe89c190cf13cde
14 changes: 7 additions & 7 deletions .tours/contributing.tour
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
{
"directory": "src",
"line": 1,
"description": "Hello world! code-server's source code lives here. It's broadly arranged into browser code, Node code, and code shared between both."
"description": "Hello world! code-server's source code lives here in `src` (see the explorer). It's broadly arranged into browser code, Node code, and code shared between both."
},
{
"file": "src/node/entry.ts",
Expand Down Expand Up @@ -58,9 +58,9 @@
"description": "We pass sockets to child processes, however we can't pass TLS sockets so when code-server is handling TLS (via --cert) we use this to create a proxy that can be passed to the child."
},
{
"file": "src/node/routes",
"directory": "src/node/routes",
"line": 1,
"description": "code-server's routes live here."
"description": "code-server's routes live here in `src/node/routes` (see the explorer)."
},
{
"file": "src/node/routes/index.ts",
Expand Down Expand Up @@ -128,19 +128,19 @@
"description": "The service worker only exists to provide PWA functionality."
},
{
"file": "src/browser/pages",
"directory": "src/browser/pages",
"line": 1,
"description": "HTML, CSS, and JavaScript for each page lives here. Currently our HTML uses a simple search and replace template system with variables that {{LOOK_LIKE_THIS}}."
"description": "HTML, CSS, and JavaScript for each page lives in here `src/browser/pages` (see the explorer). Currently our HTML uses a simple search and replace template system with variables that {{LOOK_LIKE_THIS}}."
},
{
"file": "src/browser/pages/vscode.html",
"line": 1,
"description": "The VS Code HTML is based off VS Code's own `workbench.html`."
},
{
"file": "src/browser/media",
"directory": "src/browser/media",
"line": 1,
"description": "Static images and the manifest live here."
"description": "Static images and the manifest live here in `src/browser/media` (see the explorer)."
},
{
"file": "ci/dev/vscode.patch",
Expand Down
0