Skip to content

Commit 5452479

Browse files
committed
added content about Visual Studio Code to README
1 parent 2a77584 commit 5452479

File tree

1 file changed

+17
-4
lines changed

1 file changed

+17
-4
lines changed

README.md

Lines changed: 17 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,13 @@
22

33
<!-- TOC -->
44

5-
- [Clone and build project](#clone-and-build-project)
6-
- [Deploy project to Cloud Functions Local Emulator](#deploy-project-to-cloud-functions-local-emulator)
5+
- [Clone project](#clone-project)
6+
- [Build project from command-line](#build-project-from-command-line)
7+
- [Deploy project to Cloud Functions Local Emulator from command-line](#deploy-project-to-cloud-functions-local-emulator-from-command-line)
78

89
<!-- /TOC -->
910

10-
## Clone and build project
11+
## Clone project
1112

1213
Clone project from GitHub:
1314

@@ -21,6 +22,16 @@ Go to to project folder:
2122
cd gcp-cloud-functions-typescript-starter
2223
```
2324

25+
Optional. You can open project in Visual Studio Code to to build and deploy project from GUI menu:
26+
27+
```bash
28+
code .
29+
```
30+
31+
## Build project from command-line
32+
33+
If you prefer command-line interface instead of Visual Studio Code than use the next commands to build project.
34+
2435
Install required `npm` modules:
2536

2637
```bash
@@ -35,7 +46,9 @@ tsc
3546

3647
File `index.js` is generated and is ready to deploy to **Cloud Functions**
3748

38-
## Deploy project to Cloud Functions Local Emulator
49+
## Deploy project to Cloud Functions Local Emulator from command-line
50+
51+
If you prefer command-line interface instead of Visual Studio Code than use the next commands to deploy project.
3952

4053
The **Cloud Functions Emulator** is distributed as a standard NPM package, so you can install it with a standard `npm install` command:
4154

0 commit comments

Comments
 (0)