don't track data/config.json
Auto-generating it is better as random seed can be made unique upon first run Signed-off-by: hrj <harshad.rj@gmail.com>
This commit is contained in:
parent
6189ffce89
commit
da1b7eee23
|
@ -1,6 +1,5 @@
|
|||
/*.log
|
||||
/*.png
|
||||
**/*.db
|
||||
/bin/
|
||||
/project/**
|
||||
/target/
|
||||
|
@ -17,3 +16,6 @@
|
|||
/known/
|
||||
/unknown/
|
||||
/lib/fonts/
|
||||
|
||||
# for data/
|
||||
/data
|
||||
|
|
|
@ -1,32 +0,0 @@
|
|||
{
|
||||
"randomSeed" : 20,
|
||||
"port" : 8888,
|
||||
"captchaExpiryTimeLimit" : 5,
|
||||
"throttle" : 10,
|
||||
"threadDelay" : 2,
|
||||
"captchas" : [ {
|
||||
"name" : "FilterChallenge",
|
||||
"allowedLevels" : [ "medium", "hard" ],
|
||||
"allowedMedia" : [ "image/png" ],
|
||||
"allowedInputType" : [ "text" ],
|
||||
"config" : { }
|
||||
}, {
|
||||
"name" : "GifCaptcha",
|
||||
"allowedLevels" : [ "hard" ],
|
||||
"allowedMedia" : [ "image/gif" ],
|
||||
"allowedInputType" : [ "text" ],
|
||||
"config" : { }
|
||||
}, {
|
||||
"name" : "ShadowTextCaptcha",
|
||||
"allowedLevels" : [ "easy" ],
|
||||
"allowedMedia" : [ "image/png" ],
|
||||
"allowedInputType" : [ "text" ],
|
||||
"config" : { }
|
||||
}, {
|
||||
"name" : "RainDropsCaptcha",
|
||||
"allowedLevels" : [ "easy", "medium" ],
|
||||
"allowedMedia" : [ "image/gif" ],
|
||||
"allowedInputType" : [ "text" ],
|
||||
"config" : { }
|
||||
} ]
|
||||
}
|
Loading…
Reference in New Issue