Skip to content

Commit 69716ac

Browse files
author
Ivelin Ivanov
authoredOct 7, 2021
chore: initial commit [skip-ci]
1 parent 3b0a98b commit 69716ac

13 files changed

+7190
-0
lines changed
 

‎.gitpod.yml

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
2+
image:
3+
file: .gitpod.Dockerfile
4+
5+
tasks:
6+
- init: |
7+
npm install
8+
npm run prepare
9+
npm update
10+
npm audit fix
11+
- command: |
12+
echo "peerfetch JavaScript work dir:"
13+
cd javascript/peerfetch
14+
- command: |
15+
echo "peerfetch Python work dir:"
16+
cd python/peerfetch
17+
18+
ports:
19+
- port: 8080
20+
21+
github:
22+
prebuilds:
23+
addComment: true
24+
addBadge: true

‎.vscode/launch.json

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
{
8+
"type": "pwa-node",
9+
"request": "launch",
10+
"name": "Launch Program",
11+
"skipFiles": [
12+
"<node_internals>/**"
13+
],
14+
"program": "${workspaceFolder}/../../ide/<node_internals>/internal/modules/cjs/helpers.js",
15+
"outFiles": [
16+
"${workspaceFolder}/**/*.js"
17+
]
18+
}
19+
]
20+
}

0 commit comments

Comments
 (0)