-
Notifications
You must be signed in to change notification settings - Fork 1
/
.gitpod.yml
25 lines (24 loc) · 1.03 KB
/
.gitpod.yml
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
image:
file: .ContainerFile
# List the ports you want to expose and what to do when they are served. See https://www.gitpod.io/docs/config-ports/
# ports:
# - port: 3000
# onOpen: open-preview
# List the start up tasks. You can start them in parallel in multiple terminals. See https://www.gitpod.io/docs/config-start-tasks/
# tasks:
# - init: echo 'init script' # runs during prebuild
# command: echo 'start script'
tasks:
- name: Set up Git Config
openIn: bottom
command: git config --global user.name "jortfal" &&
git config --global user.email "[email protected]" &&
git config --global commit.gpgsign true &&
git config --global user.signingkey 0000000000000000 &&
touch private.gpg &&
echo 'WARNING!!! Do not forget to import the private gpg key ;)' &&
echo 'use "gpg --import private.gpg" to import private key '
vscode:
"shd101wyy.markdown-preview-enhanced",
"yzhang.markdown-all-in-one",
"DavidAnson.vscode-markdownlint"