mirror of
https://github.com/jakejarvis/spoons.git
synced 2025-06-29 03:15:40 -04:00
14 lines
279 B
PHP
14 lines
279 B
PHP
<?php
|
|
/* site config */
|
|
$site_url = "http://spoons.scrabblerocks.com";
|
|
$site_password = "asdf1234";
|
|
|
|
/* database config */
|
|
$db_host = "loalhost";
|
|
$db_user = "root";
|
|
$db_pass = "lol";
|
|
$db_name = "spoons";
|
|
|
|
|
|
date_default_timezone_set("America/New_York");
|
|
?>
|