Skip to content
This repository was archived by the owner on Dec 16, 2025. It is now read-only.

Commit 6f886ed

Browse files
authored
add an example view and simplify path to content (#261)
1 parent 3a5b1db commit 6f886ed

3 files changed

Lines changed: 11 additions & 1 deletion

File tree

site/app/views/vslive/view.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"title": "Visual Studio Live",
3+
"description": "Come learn about Google Cloud Platform by completing codelabs and coding challenges! The following codelabs will step you through using different parts of Google Cloud Platform. These challenges cover a range of topics such as Compute Engine, App Engine, Kubernetes, Cloud Shell. Go to https://g.co/codelabs/vslive to find more codelabs you can try at home.",
4+
"logoUrl": "/vslive/vslive-logo.jpg",
5+
"tags": ["vslive"],
6+
"exclude": [
7+
".*-about$",
8+
"^lang-.*"
9+
]
10+
}
4.13 KB
Loading

site/gulpfile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ const BASE_URL = args.baseUrl || 'https://example.com';
6060
// CODELABS_DIR is the directory where the actual codelabs exist on disk.
6161
// Despite being a constant, this can be overridden with the --codelabs-dir
6262
// flag.
63-
const CODELABS_DIR = args.codelabsDir || '../../content/web';
63+
const CODELABS_DIR = args.codelabsDir || '.';
6464

6565
// CODELABS_ENVIRONMENT is the environment for which to build codelabs.
6666
const CODELABS_ENVIRONMENT = args.codelabsEnv || 'web';

0 commit comments

Comments
 (0)