cdb24 commited on
Commit
7614ee8
1 Parent(s): d53b36a

Delete .vscode

Browse files
Files changed (2) hide show
  1. .vscode/launch.json +0 -19
  2. .vscode/tasks.json +0 -26
.vscode/launch.json DELETED
@@ -1,19 +0,0 @@
1
- {
2
- "configurations": [
3
- {
4
- "name": "Docker: Python - General",
5
- "type": "docker",
6
- "request": "launch",
7
- "preLaunchTask": "docker-run: debug",
8
- "python": {
9
- "pathMappings": [
10
- {
11
- "localRoot": "${workspaceFolder}",
12
- "remoteRoot": "/app"
13
- }
14
- ],
15
- "projectType": "general"
16
- }
17
- }
18
- ]
19
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
.vscode/tasks.json DELETED
@@ -1,26 +0,0 @@
1
- {
2
- "version": "2.0.0",
3
- "tasks": [
4
- {
5
- "type": "docker-build",
6
- "label": "docker-build",
7
- "platform": "python",
8
- "dockerBuild": {
9
- "tag": "cs482project:latest",
10
- "dockerfile": "${workspaceFolder}/Dockerfile",
11
- "context": "${workspaceFolder}",
12
- "pull": true
13
- }
14
- },
15
- {
16
- "type": "docker-run",
17
- "label": "docker-run: debug",
18
- "dependsOn": [
19
- "docker-build"
20
- ],
21
- "python": {
22
- "file": "hello.py"
23
- }
24
- }
25
- ]
26
- }