1<?php
2
3define('MAX_IMAGE_SIZE', 1024 * 1024 * 4);
4define('MAX_URL_SIZE', 255);
5define('DB_DSN', 'sqlite:similar.sqlite3');
6define('MAX_WORDS', 100);
7define('MAX_WORD_LENGTH', 10);
8
9?>
10