Skip to content

Commit add77ac

Browse files
author
Andrei Jiroh Eugenio Halili
committed
Gitpodify csb-docs + add project-wide VS Code config
Signed-off-by: Andrei Jiroh Eugenio Halili <andreijiroh@madebythepins.tk>
1 parent 037a13a commit add77ac

File tree

3 files changed

+41
-0
lines changed

3 files changed

+41
-0
lines changed

.gitpod.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
2+
checkoutLocation: csb-docs
3+
# The workspace location when the workspace is being open
4+
workspaceLocation: csb-docs
5+
6+
image: gitpod/workspace-full
7+
8+
# List the start up tasks. Learn more https://www.gitpod.io/docs/config-start-tasks/
9+
tasks:
10+
- init: npm i
11+
command: npm run develop
12+
13+
# List the ports to expose. Learn more https://www.gitpod.io/docs/config-ports/
14+
ports:
15+
# development site preview
16+
- port: 8000
17+
onOpen: notify
18+
# production build preview
19+
- port: 9000
20+
onOpen: notify
21+
22+
23+
vscode:
24+
extensions:
25+
- vscode-icons-team.vscode-icons

.vscode/extensions.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"recommendations": [
3+
"vscode-icons-team.vscode-icons"
4+
]
5+
}

.vscode/settings.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"files.autoSaveDelay": 10000,
3+
"workbench.iconTheme": "vscode-icons",
4+
"[git-commit]": {
5+
"editor.rulers": [
6+
72
7+
],
8+
"workbench.editor.restoreViewState": false
9+
},
10+
"git.alwaysSignOff": true
11+
}

0 commit comments

Comments
 (0)