Skip to content

Commit 6427dae

Browse files
Restructure gitpod related files
1 parent 80c2f98 commit 6427dae

File tree

3 files changed

+13
-16
lines changed

3 files changed

+13
-16
lines changed

.gitpod.yml

Lines changed: 11 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
## dependencies to download and builds to finish when reviewing pull-requests
88
## or hacking on something new.
99
##
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
1111
## desktop or browser based versions of VS Code or any JetBrains IDE and
1212
## customise it to your individual needs - from themes to extensions, you
1313
## have full control.
@@ -18,8 +18,7 @@
1818
##
1919
## For example: 'https://gitpod.io#https://github.com/gitpod-io/gitpod'
2020

21-
22-
## The 'image' section defines which Docker image Gitpod should use.
21+
## The 'image' section defines which Docker image Gitpod should use.
2322
## By default, Gitpod uses a standard Docker Image called 'workspace-full'
2423
## which can be found at 'https://github.com/gitpod-io/workspace-images'
2524
##
@@ -29,7 +28,7 @@
2928
##
3029
## If this image does not include the tools needed for your project then
3130
## a public Docker image or your own Docker file can be configured.
32-
##
31+
##
3332
## Learn more about images at 'https://www.gitpod.io/docs/config-docker'
3433

3534
#image: node:buster # use 'https://hub.docker.com/_/node'
@@ -39,13 +38,13 @@
3938
# # root of the project
4039

4140
image:
42-
file: .gitpod.Dockerfile
41+
file: .gitpod/.gitpod.Dockerfile
4342

4443
## The 'tasks' section defines how Gitpod prepares and builds this project
4544
## or how Gitpod can start development servers. With Gitpod, there are three
4645
## types of tasks:
4746
##
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.
4948
## - init: Use this to configure prebuilds of heavy-lifting tasks such as
5049
## downloading dependencies or compiling source code.
5150
## - command: Use this to start your database or application when the workspace starts.
@@ -57,12 +56,12 @@ image:
5756
# # commands to execute...
5857
#
5958
# - 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
6160
# # dependencies but these are not kept after the
6261
# # prebuild completes thus Gitpod recommends moving
6362
# # operating system dependency installation steps
6463
# # to a custom Dockerfile to make prebuilds faster
65-
# # and to keep your codebase DRY.
64+
# # and to keep your codebase DRY.
6665
# # 'https://www.gitpod.io/docs/config-docker'
6766
#
6867
# # pip install -r requirements.txt # install codebase dependencies
@@ -87,13 +86,13 @@ tasks:
8786
- name: AWS SSO Login
8887
openMode: split-left
8988
command: |
90-
aws sso login
89+
aws sso login
9190
- name: Bash
9291
openMode: split-right
9392
command: |
9493
bash
9594
96-
## The 'ports' section defines various ports your may listen on are
95+
## The 'ports' section defines various ports your may listen on are
9796
## configured in Gitpod on an authenticated URL. By default, all ports
9897
## are in private visibility state.
9998
##
@@ -104,7 +103,6 @@ tasks:
104103
# visibility: private # either 'public' or 'private' (default)
105104
# onOpen: open-browser # either 'open-browser', 'open-preview' or 'ignore'
106105

107-
108106
## The 'vscode' section defines a list of Visual Studio Code extensions from
109107
## the OpenVSX.org registry to be installed upon workspace startup. OpenVSX
110108
## is an open alternative to the proprietary Visual Studio Code Marketplace
@@ -118,20 +116,19 @@ tasks:
118116
## Learn more at 'https://www.gitpod.io/docs/ides-and-editors/vscode'
119117

120118
#vscode:
121-
# extensions:
119+
# extensions:
122120
# - vscodevim.vim
123121
124122
# - https://example.com/abc/releases/extension-0.26.0.vsix
125123

126-
127124
## The 'github' section defines configuration of continuous prebuilds
128125
## for GitHub repositories when the GitHub application
129126
## 'https://github.com/apps/gitpod-io' is installed in GitHub and granted
130127
## permissions to access the repository.
131128
##
132129
## Learn more at 'https://www.gitpod.io/docs/prebuilds'
133130

134-
github:
131+
github:
135132
prebuilds:
136133
# enable for the default branch
137134
master: true

.gitpod.Dockerfile renamed to .gitpod/.gitpod.Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,5 @@ RUN cd /tmp && \
2323

2424
# Configure AWS with Gitpod
2525
RUN mkdir -p /home/gitpod/.aws /home/gitpod/.docker
26-
COPY .gitpod.configure.sh /home/gitpod/.aws/configure.sh
27-
RUN echo ". /home/gitpod/.aws/configure.sh" >> /home/gitpod/.bashrc
26+
COPY .gitpod/.gitpod.configure.sh /home/gitpod/.aws/configure.sh
27+
RUN echo ". /home/gitpod/.aws/configure.sh" >> /home/gitpod/.bashrc
File renamed without changes.

0 commit comments

Comments
 (0)