-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.gitpod.yml
More file actions
30 lines (26 loc) · 736 Bytes
/
.gitpod.yml
File metadata and controls
30 lines (26 loc) · 736 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
tasks:
- name: Setup
init: |
# Install npm dependencies
# npm installs dependencies to the working folder, which are persistent across restarts
npm install
command: |
# Start the development server
npm run start
vscode:
extensions:
- dsznajder.es7-react-js-snippets
- esbenp.prettier-vscode
- dbaeumer.vscode-eslint
- ritwickdey.liveserver
- mikestead.dotenv
- redhat.vscode-yaml
- streetsidesoftware.code-spell-checker
- vscode-icons-team.vscode-icons
ports:
- port: 3000
onOpen: open-browser
visibility: public
- port: 5000
onOpen: open-browser
visibility: public