mirror of
https://github.com/smogon/pokemon-showdown-client.git
synced 2026-08-20 10:02:05 -05:00
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.
11 lines
189 B
PHP
11 lines
189 B
PHP
<?php
|
|
|
|
$config_replay_database = [
|
|
'server' => '127.0.0.1',
|
|
'username' => 'username',
|
|
'password' => 'password',
|
|
'database' => 'replays',
|
|
'prefix' => 'ps_',
|
|
'charset' => 'utf8mb4',
|
|
];
|