Skip to content

Commit

Permalink
u
Browse files Browse the repository at this point in the history
  • Loading branch information
gong-cha committed Oct 12, 2023
1 parent 14d6496 commit 4a65245
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/load.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@
// localhostを使うと遅くなります。127.0.0.1を使ってください。
// See: https://stackoverflow.com/a/9800798/5602117
// https://www.phpmyadmin.co/index.php?db=sql12650040&target=db_structure.php
define('DB_HOST', 'sql12.freemysqlhosting.net');
define('DB_USERNAME', 'sql12650040');
define('DB_PASSWORD', 'qUhFDwRMSf');
define('DB_DATABASE', 'sql12650040');
define('DB_HOST', getenv('DB_HOST') ?: 'sql12.freemysqlhosting.net');
define('DB_USERNAME', getenv('DB_USERNAME') ?: 'sql12650040');
define('DB_PASSWORD', getenv('DB_PASSWORD') ?: 'qUhFDwRMSf');
define('DB_DATABASE', getenv('DB_DATABASE') ?: 'sql12650040');
}

class DB
Expand Down

0 comments on commit 4a65245

Please sign in to comment.