mirror of
https://github.com/jakejarvis/spoons.git
synced 2025-04-26 12:18:27 -04:00
17 lines
363 B
PHP
17 lines
363 B
PHP
<?php
|
|
/* site config */
|
|
$site_url = "http://spoons.scrabblerocks.com";
|
|
$site_password = "asdf1234";
|
|
|
|
/* database config */
|
|
$db_host = "loalhost";
|
|
$db_port = 8889;
|
|
$db_user = "root";
|
|
$db_pass = "lol";
|
|
$db_name = "spoons";
|
|
|
|
$timezone_number = "-4:00";
|
|
$timezone_name = "America/New_York";
|
|
|
|
date_default_timezone_set($timezone_name);
|
|
?>
|