Files
pokemon-showdown-client/replays/replay-config.example.inc.php
Guangcong Luo 029b691be1 Add replay database code to version control (#1301)
This required a new architecture for serving replays from inside the
client repository, because that seems like a better call than
introducing yet another PS repository.

(Experience gives me the impression that separating repositories wasn't
a good idea, and we should be working to make PS more mono-repo-like,
rather than less.)

License for replay code is tentatively AGPLv3, although feel free to ask
for a more permissive license if you have plans to use it in an
open-source project that requires it.
2019-06-14 17:48:34 +09:00

11 lines
189 B
PHP

<?php
$config_replay_database = [
'server' => '127.0.0.1',
'username' => 'username',
'password' => 'password',
'database' => 'replays',
'prefix' => 'ps_',
'charset' => 'utf8mb4',
];