Skip to content

Commit 6b53ac1

Browse files
author
Dylan Huang
committed
include launch.json.backup
1 parent f246087 commit 6b53ac1

2 files changed

Lines changed: 38 additions & 0 deletions

File tree

.vscode/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
!launch.json.backup

.vscode/launch.json.backup

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
{
2+
"version": "0.2.0",
3+
"configurations": [
4+
{
5+
"name": "EP: Upload",
6+
"type": "python",
7+
"request": "launch",
8+
"module": "eval_protocol.cli",
9+
"args": ["upload"],
10+
"console": "integratedTerminal",
11+
"justMyCode": false,
12+
"cwd": "<REPLACE_WITH_YOUR_EVALUATOR_DIRECTORY>",
13+
"env": {
14+
"PYTHONPATH": "${workspaceFolder}",
15+
"FIREWORKS_API_KEY": "${env:FIREWORKS_API_KEY}",
16+
"FIREWORKS_BASE_URL": "${env:FIREWORKS_BASE_URL}",
17+
"FIREWORKS_EXTRA_HEADERS": "{\"x-api-key\": \"${env:FIREWORKS_API_KEY}\", \"X-Fireworks-Gateway-Secret\": \"${env:FIREWORKS_GATEWAY_SECRET}\"}"
18+
}
19+
},
20+
{
21+
"name": "EP: Local Test",
22+
"type": "python",
23+
"request": "launch",
24+
"module": "eval_protocol.cli",
25+
"args": ["local-test"],
26+
"console": "integratedTerminal",
27+
"justMyCode": false,
28+
"cwd": "<REPLACE_WITH_YOUR_EVALUATOR_DIRECTORY>",
29+
"env": {
30+
"PYTHONPATH": "${workspaceFolder}",
31+
"FIREWORKS_API_KEY": "${env:FIREWORKS_API_KEY}",
32+
"FIREWORKS_BASE_URL": "${env:FIREWORKS_BASE_URL}",
33+
"FIREWORKS_EXTRA_HEADERS": "{\"x-api-key\": \"${env:FIREWORKS_API_KEY}\", \"X-Fireworks-Gateway-Secret\": \"${env:FIREWORKS_GATEWAY_SECRET}\"}"
34+
}
35+
}
36+
]
37+
}

0 commit comments

Comments
 (0)