-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathat-config-sample.php
31 lines (26 loc) · 1005 Bytes
/
at-config-sample.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
<?php
/**
* Archivists' Toolkit(TM) PHP Lookup Tools
* Copyright (c) 2010-2013 Yale University
* All rights reserved.
*
* This software is free. You can redistribute it and / or modify it under the
* terms of the Educational Community License (ECL) version 1.0
* (http://www.opensource.org/licenses/ecl1.php)
*
* This software is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the ECL license for more details
* about permissions and limitations.
*
*/
/** MySQL settings */
/** ATDB_USER: Username used to connect to the AT database. */
define('ATDB_USER', 'atuser');
/** ATDB_PASS: Password for user ATDB_USER. */
define('ATDB_PASS', 'cr4ckA1t');
/** ATDB_HOST: Hostname for MySQL server. */
define('ATDB_HOST', 'dev.archiviststoolkit.org');
/** ATDB_DATABASE: Name of the database used by Archivists' Toolkit. */
define('ATDB_DATABASE', 'AT_SANDBOX2_0');
?>