Skip to content

Commit 24f7b60

Browse files
committed
initial commit
0 parents  commit 24f7b60

File tree

1,874 files changed

+244095
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,874 files changed

+244095
-0
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
5+
---
6+
7+
### Describe the bug
8+
<!-- A clear and concise description of what the bug is -->
9+
10+
### Steps to reproduce
11+
<!-- Steps to reproduce the behavior -->
12+
13+
### Expected behavior
14+
<!-- A clear and concise description of what you expected to happen -->
15+
16+
### Additional information
17+
<!-- For instance, workspace IDs; URLs; relevant logs from terminals or the browser's devtool console -->
18+
19+
### Example repository
20+
<!-- For instance, the repository where the error occurred -->
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for this project
4+
5+
---
6+
7+

.github/ISSUE_TEMPLATE/question.md

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
name: Question
3+
about: Ask whatever you want.
4+
5+
---
6+
7+

.gitignore

+59
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
dist/
2+
components/*/lib/
3+
components/*/typescript/lib/
4+
components/theia/app/lib/
5+
components/theia/packages/*/lib/
6+
components/theia/supervisor-api/*/lib/
7+
src-gen/
8+
css-gen/
9+
node_modules/
10+
yarn-error.log
11+
lerna-debug.log
12+
**/telepresence.log
13+
.env
14+
.tmp
15+
.sass-cache
16+
17+
# build artifacts
18+
.terraform/
19+
*.tfstate
20+
*.tfstate.backup
21+
/versions.yaml
22+
23+
.deploy/
24+
.create-cluster-tmp/
25+
components/versions/versions.json
26+
27+
.npmrc
28+
.context
29+
.npm-packages-offline-cache
30+
.helm-chart-release
31+
*.tgz
32+
33+
# Symbolic links created by scripts for building docker images
34+
/.dockerignore
35+
36+
# Python
37+
venv/
38+
.eggs/
39+
*.egg-info
40+
*.pyc
41+
42+
# Generated
43+
components/theia/app/gen-webpack.config.js
44+
45+
# Generated (in Jenkins builds)
46+
/dev-http-cache/
47+
48+
# Helm charts testing
49+
.helm-render
50+
51+
# Decrypted secrets
52+
charts/gitpod_io/secrets/decrypted
53+
54+
# Build artifacts
55+
components/ws-scheduler/ws-scheduler
56+
components/ws-proxy/ws-proxy
57+
58+
# Logs
59+
components/server/*.log

.gitpod.yml

+44
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
image: eu.gcr.io/gitpod-core-dev/dev/dev-environment:me-cercscheduler.3
2+
workspaceLocation: gitpod/gitpod-ws.theia-workspace
3+
checkoutLocation: gitpod
4+
ports:
5+
- port: 1337
6+
onOpen: open-preview
7+
- port: 3000
8+
onOpen: ignore
9+
- port: 3001
10+
onOpen: ignore
11+
- port: 3306
12+
onOpen: ignore
13+
- port: 4000
14+
onOpen: ignore
15+
- port: 5900
16+
onOpen: ignore
17+
- port: 6080
18+
onOpen: ignore
19+
- port: 9229
20+
onOpen: ignore
21+
# Go proxy
22+
- port: 9999
23+
onOpen: ignore
24+
- port: 13001
25+
onOpen: ignore
26+
# Werft
27+
- port: 7777
28+
onOpen: ignore
29+
# Dev Theia
30+
- port: 13444
31+
tasks:
32+
- before: scripts/branch-namespace.sh
33+
init: yarn && yarn build
34+
- name: Go
35+
init: leeway exec --filter-type go -v -- go get -v ./...
36+
openMode: split-right
37+
vscode:
38+
extensions:
39+
- [email protected]:UATTe2sTFfCYWQ3jw4IRsw==
40+
- [email protected]:ZnPmyF/Pb8AIWeCqc83gPw==
41+
- [email protected]:j58HdmA0K7d9a9sEkogZNw==
42+
- [email protected]:uXdjV53wtoTevFK6HOh3pQ==
43+
- [email protected]:QEP7gdWtMuY+j8RZ5OLDkA==
44+
- [email protected]:yEx8nRSXlfXAHqsbkTJpdA==

.leewayignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
node_modules

.vscode/launch.json

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"configurations": [
3+
{
4+
"name": "Attach to Node",
5+
"type": "node",
6+
"request": "attach",
7+
"smartStep": true,
8+
"port": 9229
9+
},
10+
{
11+
"name": "Attach to Delve",
12+
"type": "go",
13+
"request": "attach",
14+
"port": 32991,
15+
"mode": "remote"
16+
}
17+
]
18+
}

0 commit comments

Comments
 (0)