7
7
# # dependencies to download and builds to finish when reviewing pull-requests
8
8
# # or hacking on something new.
9
9
# #
10
- # # With Gitpod you can develop software from any device (even iPads) via
10
+ # # With Gitpod you can develop software from any device (even iPads) via
11
11
# # desktop or browser based versions of VS Code or any JetBrains IDE and
12
12
# # customise it to your individual needs - from themes to extensions, you
13
13
# # have full control.
18
18
# #
19
19
# # For example: 'https://gitpod.io#https://github.com/gitpod-io/gitpod'
20
20
21
-
22
- # # The 'image' section defines which Docker image Gitpod should use.
21
+ # # The 'image' section defines which Docker image Gitpod should use.
23
22
# # By default, Gitpod uses a standard Docker Image called 'workspace-full'
24
23
# # which can be found at 'https://github.com/gitpod-io/workspace-images'
25
24
# #
29
28
# #
30
29
# # If this image does not include the tools needed for your project then
31
30
# # a public Docker image or your own Docker file can be configured.
32
- # #
31
+ # #
33
32
# # Learn more about images at 'https://www.gitpod.io/docs/config-docker'
34
33
35
34
# image: node:buster # use 'https://hub.docker.com/_/node'
39
38
# # root of the project
40
39
41
40
image :
42
- file : .gitpod.Dockerfile
41
+ file : .gitpod/.gitpod .Dockerfile
43
42
44
43
# # The 'tasks' section defines how Gitpod prepares and builds this project
45
44
# # or how Gitpod can start development servers. With Gitpod, there are three
46
45
# # types of tasks:
47
46
# #
48
- # # - before: Use this for tasks that need to run before init and before command.
47
+ # # - before: Use this for tasks that need to run before init and before command.
49
48
# # - init: Use this to configure prebuilds of heavy-lifting tasks such as
50
49
# # downloading dependencies or compiling source code.
51
50
# # - command: Use this to start your database or application when the workspace starts.
@@ -57,12 +56,12 @@ image:
57
56
# # commands to execute...
58
57
#
59
58
# - init: |
60
- # # sudo apt-get install python3 # can be used to install operating system
59
+ # # sudo apt-get install python3 # can be used to install operating system
61
60
# # dependencies but these are not kept after the
62
61
# # prebuild completes thus Gitpod recommends moving
63
62
# # operating system dependency installation steps
64
63
# # to a custom Dockerfile to make prebuilds faster
65
- # # and to keep your codebase DRY.
64
+ # # and to keep your codebase DRY.
66
65
# # 'https://www.gitpod.io/docs/config-docker'
67
66
#
68
67
# # pip install -r requirements.txt # install codebase dependencies
@@ -87,13 +86,13 @@ tasks:
87
86
- name : AWS SSO Login
88
87
openMode : split-left
89
88
command : |
90
- aws sso login
89
+ aws sso login
91
90
- name : Bash
92
91
openMode : split-right
93
92
command : |
94
93
bash
95
94
96
- # # The 'ports' section defines various ports your may listen on are
95
+ # # The 'ports' section defines various ports your may listen on are
97
96
# # configured in Gitpod on an authenticated URL. By default, all ports
98
97
# # are in private visibility state.
99
98
# #
@@ -104,7 +103,6 @@ tasks:
104
103
# visibility: private # either 'public' or 'private' (default)
105
104
# onOpen: open-browser # either 'open-browser', 'open-preview' or 'ignore'
106
105
107
-
108
106
# # The 'vscode' section defines a list of Visual Studio Code extensions from
109
107
# # the OpenVSX.org registry to be installed upon workspace startup. OpenVSX
110
108
# # is an open alternative to the proprietary Visual Studio Code Marketplace
@@ -118,20 +116,19 @@ tasks:
118
116
# # Learn more at 'https://www.gitpod.io/docs/ides-and-editors/vscode'
119
117
120
118
# vscode:
121
- # extensions:
119
+ # extensions:
122
120
# - vscodevim.vim
123
121
124
122
# - https://example.com/abc/releases/extension-0.26.0.vsix
125
123
126
-
127
124
# # The 'github' section defines configuration of continuous prebuilds
128
125
# # for GitHub repositories when the GitHub application
129
126
# # 'https://github.com/apps/gitpod-io' is installed in GitHub and granted
130
127
# # permissions to access the repository.
131
128
# #
132
129
# # Learn more at 'https://www.gitpod.io/docs/prebuilds'
133
130
134
- github :
131
+ github :
135
132
prebuilds :
136
133
# enable for the default branch
137
134
master : true
0 commit comments