-
Notifications
You must be signed in to change notification settings - Fork 29
/
.gitpod.yml
36 lines (36 loc) · 1.04 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
26
27
28
29
30
31
32
33
34
35
36
tasks:
- name: Setup environment variables
command: |
source ./setup-env-variables.sh
gp sync-done env-setup
- name: Install AWS CLI
command: |
gp sync-await env-setup
./install-aws-cli.sh
gp sync-done aws-cli
- name: Setup default aws-vault & Open Dashboards
command: |
gp sync-await aws-cli
./collect-credentials.sh
./open-cloud-dashboards.sh
- name: Install kubectl
command: source ./install-kubectl.sh
- name: Install Terraform
command: source ./install-terraform.sh
- name: Install Dynamodb
command: source ./install-dynamodb-local.sh
- name: Install Visual Studio Code extensions
command: source ./install-vsextensions.sh
- name: Install PostgreSQL
command: source ./install-postgres.sh
- name: Install Google Cloud SDK
command: source ./install-gcloud.sh
vscode:
extensions:
- ms-python.python
- aws-toolkit-vscode.aws-toolkit-vscode
- ms-mssql.mssql
- amazon-dynamodb.aws-dynamodb-toolkit
github:
prebuilds:
master: true