diff options
author | Chris Xiong <chirs241097@gmail.com> | 2020-04-06 00:50:58 +0800 |
---|---|---|
committer | Chris Xiong <chirs241097@gmail.com> | 2020-04-06 00:50:58 +0800 |
commit | ed47c1557915bb2472f6959e723cd76155312a98 (patch) | |
tree | 85bc451630ebaa4f5ffce3043b4cbf948a912a66 /deduper/libpuzzle/php/examples/similar/config.inc.php | |
parent | 0a094f28c2e2ebfaac91398ae62e40f00f09221b (diff) | |
download | oddities-ed47c1557915bb2472f6959e723cd76155312a98.tar.xz |
Add deduper (unfinished tool for finding image duplicates).
Diffstat (limited to 'deduper/libpuzzle/php/examples/similar/config.inc.php')
-rw-r--r-- | deduper/libpuzzle/php/examples/similar/config.inc.php | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/deduper/libpuzzle/php/examples/similar/config.inc.php b/deduper/libpuzzle/php/examples/similar/config.inc.php new file mode 100644 index 0000000..d4e3b41 --- /dev/null +++ b/deduper/libpuzzle/php/examples/similar/config.inc.php @@ -0,0 +1,9 @@ +<?php + +define('MAX_IMAGE_SIZE', 1024 * 1024 * 4); +define('MAX_URL_SIZE', 255); +define('DB_DSN', 'sqlite:similar.sqlite3'); +define('MAX_WORDS', 100); +define('MAX_WORD_LENGTH', 10); + +?> |