Skip to content

Commit f359ca1

Browse files
Enable software development from any device via https://gitpod.io (#7437)
Learn more about this file at 'https://www.gitpod.io/docs/references/gitpod-yml'
1 parent 2e0033d commit f359ca1

File tree

2 files changed

+140
-0
lines changed

2 files changed

+140
-0
lines changed

.gitpod.yml

+139
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,139 @@
1+
## Learn more about this file at 'https://www.gitpod.io/docs/references/gitpod-yml'
2+
##
3+
## This '.gitpod.yml' file when placed at the root of a project instructs
4+
## Gitpod how to prepare & build the project, start development environments
5+
## and configure continuous prebuilds. Prebuilds when enabled builds a project
6+
## like a CI server so you can start coding right away - no more waiting for
7+
## dependencies to download and builds to finish when reviewing pull-requests
8+
## or hacking on something new.
9+
##
10+
## With Gitpod you can develop software from any device (even iPads) via
11+
## desktop or browser based versions of VS Code or any JetBrains IDE and
12+
## customise it to your individual needs - from themes to extensions, you
13+
## have full control.
14+
##
15+
## The easiest way to try out Gitpod is install the browser extenion:
16+
## 'https://www.gitpod.io/docs/browser-extension' or by prefixing
17+
## 'https://gitpod.io#' to the source control URL of any project.
18+
##
19+
## For example: 'https://gitpod.io#https://github.com/gitpod-io/gitpod'
20+
21+
22+
## The 'image' section defines which Docker image Gitpod should use.
23+
## By default, Gitpod uses a standard Docker Image called 'workspace-full'
24+
## which can be found at 'https://github.com/gitpod-io/workspace-images'
25+
##
26+
## Workspaces started based on this default image come pre-installed with
27+
## Docker, Go, Java, Node.js, C/C++, Python, Ruby, Rust, PHP as well as
28+
## tools such as Homebrew, Tailscale, Nginx and several more.
29+
##
30+
## If this image does not include the tools needed for your project then
31+
## a public Docker image or your own Docker file can be configured.
32+
##
33+
## Learn more about images at 'https://www.gitpod.io/docs/config-docker'
34+
35+
#image: node:buster # use 'https://hub.docker.com/_/node'
36+
#
37+
#image: # leave image undefined if using a Dockerfile
38+
# file: .gitpod.Dockerfile # relative path to the Dockerfile from the
39+
# # root of the project
40+
41+
## The 'tasks' section defines how Gitpod prepares and builds this project
42+
## or how Gitpod can start development servers. With Gitpod, there are three
43+
## types of tasks:
44+
##
45+
## - before: Use this for tasks that need to run before init and before command.
46+
## - init: Use this to configure prebuilds of heavy-lifting tasks such as
47+
## downloading dependencies or compiling source code.
48+
## - command: Use this to start your database or application when the workspace starts.
49+
##
50+
## Learn more about these tasks at 'https://www.gitpod.io/docs/config-start-tasks'
51+
52+
#tasks:
53+
# - before: |
54+
# # commands to execute...
55+
#
56+
# - init: |
57+
# # sudo apt-get install python3 # can be used to install operating system
58+
# # dependencies but these are not kept after the
59+
# # prebuild completes thus Gitpod recommends moving
60+
# # operating system dependency installation steps
61+
# # to a custom Dockerfile to make prebuilds faster
62+
# # and to keep your codebase DRY.
63+
# # 'https://www.gitpod.io/docs/config-docker'
64+
#
65+
# # pip install -r requirements.txt # install codebase dependencies
66+
# # cmake # precompile codebase
67+
#
68+
# - name: Web Server
69+
# openMode: split-left
70+
# env:
71+
# WEBSERVER_PORT: 8080
72+
# command: |
73+
# python3 -m http.server $WEBSERVER_PORT
74+
#
75+
# - name: Web Browser
76+
# openMode: split-right
77+
# env:
78+
# WEBSERVER_PORT: 8080
79+
# command: |
80+
# gp await-port $WEBSERVER_PORT
81+
# lynx `gp url`
82+
83+
tasks:
84+
- command: ./gradlew build
85+
86+
## The 'ports' section defines various ports your may listen on are
87+
## configured in Gitpod on an authenticated URL. By default, all ports
88+
## are in private visibility state.
89+
##
90+
## Learn more about ports at 'https://www.gitpod.io/docs/config-ports'
91+
92+
#ports:
93+
# - port: 8080 # alternatively configure entire ranges via '8080-8090'
94+
# visibility: private # either 'public' or 'private' (default)
95+
# onOpen: open-browser # either 'open-browser', 'open-preview' or 'ignore'
96+
97+
98+
## The 'vscode' section defines a list of Visual Studio Code extensions from
99+
## the OpenVSX.org registry to be installed upon workspace startup. OpenVSX
100+
## is an open alternative to the proprietary Visual Studio Code Marketplace
101+
## and extensions can be added by sending a pull-request with the extension
102+
## identifier to https://github.com/open-vsx/publish-extensions
103+
##
104+
## The identifier of an extension is always ${publisher}.${name}.
105+
##
106+
## For example: 'vscodevim.vim'
107+
##
108+
## Learn more at 'https://www.gitpod.io/docs/ides-and-editors/vscode'
109+
110+
#vscode:
111+
# extensions:
112+
# - vscodevim.vim
113+
114+
# - https://example.com/abc/releases/extension-0.26.0.vsix
115+
116+
117+
## The 'github' section defines configuration of continuous prebuilds
118+
## for GitHub repositories when the GitHub application
119+
## 'https://github.com/apps/gitpod-io' is installed in GitHub and granted
120+
## permissions to access the repository.
121+
##
122+
## Learn more at 'https://www.gitpod.io/docs/prebuilds'
123+
124+
github:
125+
prebuilds:
126+
# enable for the default branch
127+
master: true
128+
# enable for all branches in this repo
129+
branches: true
130+
# enable for pull requests coming from this repo
131+
pullRequests: true
132+
# enable for pull requests coming from forks
133+
pullRequestsFromForks: true
134+
# add a check to pull requests
135+
addCheck: true
136+
# add a "Review in Gitpod" button as a comment to pull requests
137+
addComment: false
138+
# add a "Review in Gitpod" button to the pull request's description
139+
addBadge: true

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
<a href='https://github.com/ReactiveX/RxJava/actions?query=workflow%3ASnapshot'><img src='https://github.com/ReactiveX/RxJava/workflows/Snapshot/badge.svg'></a>
44
[![codecov.io](http://codecov.io/github/ReactiveX/RxJava/coverage.svg?branch=3.x)](https://codecov.io/gh/ReactiveX/RxJava/branch/3.x)
55
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/io.reactivex.rxjava3/rxjava/badge.svg)](https://maven-badges.herokuapp.com/maven-central/io.reactivex.rxjava3/rxjava)
6+
[![Contribute with Gitpod](https://img.shields.io/badge/Contribute%20with-Gitpod-908a85?logo=gitpod)](https://gitpod.io/#https://github.com/ReactiveX/RxJava)
67

78
RxJava is a Java VM implementation of [Reactive Extensions](http://reactivex.io): a library for composing asynchronous and event-based programs by using observable sequences.
89

0 commit comments

Comments
 (0)