Code
This commit is contained in:
58
Code/venv/launch.json
Normal file
58
Code/venv/launch.json
Normal file
@ -0,0 +1,58 @@
|
||||
{
|
||||
// Use IntelliSense to learn about possible attributes.
|
||||
// Hover to view descriptions of existing attributes.
|
||||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
||||
"version": "0.2.0",
|
||||
"configurations": [
|
||||
{
|
||||
"name": "cert",
|
||||
"type": "debugpy",
|
||||
"request": "launch",
|
||||
"program": "cert.py",
|
||||
"console": "integratedTerminal",
|
||||
"args": [
|
||||
"cloudflare.com",
|
||||
"-o output.txt"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "cipher",
|
||||
"type": "debugpy",
|
||||
"request": "launch",
|
||||
"program": "cipher.py",
|
||||
"console": "integratedTerminal",
|
||||
"args": [
|
||||
"localhost",
|
||||
"-p 4433"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "cipher localhost",
|
||||
"type": "debugpy",
|
||||
"request": "launch",
|
||||
"program": "cipher_new.py",
|
||||
"console": "integratedTerminal",
|
||||
"args": [
|
||||
"localhost",
|
||||
"-p 4433"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "cipher cloudflare",
|
||||
"type": "debugpy",
|
||||
"request": "launch",
|
||||
"program": "cipher_new.py",
|
||||
"console": "integratedTerminal",
|
||||
"args": [
|
||||
"cloudflare.com"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "server",
|
||||
"type": "debugpy",
|
||||
"request": "launch",
|
||||
"program": "server.py",
|
||||
"console": "integratedTerminal"
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user