Thibault Groueix commited on
Commit
a246143
·
1 Parent(s): a645b1b

added debug json

Browse files
Files changed (1) hide show
  1. .vscode/launch.json +20 -0
.vscode/launch.json ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "version": "0.2.0",
3
+ "configurations": [
4
+ {
5
+ "name": "Debug CoPaint CLI",
6
+ "type": "python",
7
+ "request": "launch",
8
+ "module": "copaint.cli",
9
+ "args": [
10
+ "--input_image", "data/bear.jpg",
11
+ "--copaint_logo", "copaint/static/logo_copaint.png",
12
+ "--outputfolder", "output",
13
+ "--nparticipants", "15",
14
+ "--debug"
15
+ ],
16
+ "console": "integratedTerminal"
17
+ }
18
+ ]
19
+ }
20
+