-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.php
41 lines (28 loc) · 909 Bytes
/
config.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<?php
if ( ! defined( 'ABSPATH' ) ) {
define( 'ABSPATH', dirname( __FILE__ ) . '/' );
}
/**
*
*/
/** Maximum base pair size which can be downloaded from NCBI sequences */
define( 'MAX_DOWNLOAD_SIZE', 500000000 );
define( 'MAX_DOWNLOAD_SIZE_STRING', '500 Mbp (500,000,0000 base pairs)' );
/** Maximum number of base pairs which can be searched */
define( 'MAX_SEARCH_SIZE', 500000000 );
define( 'MAX_SEARCH_SIZE_STRING', '500 Mbp (500,000,0000 base pairs)' );
/**
* MySQL settings
*/
/** The name of the database */
define( 'DB_NAME', 'structure_finder_db' );
/** MySQL database username */
define( 'DB_USER', 'root' );
/** MySQL database password */
define( 'DB_PASSWORD', '' );
/** MySQL hostname */
define( 'DB_HOST', 'localhost' );
/** Database Charset to use in creating database tables. */
define( 'DB_CHARSET', 'utf8' );
/** The Database Collate type. */
define( 'DB_COLLATE', '' );