mirror of
https://github.com/openfrontio/OpenFrontIO.git
synced 2026-07-16 21:52:39 +00:00
18 lines
423 B
TypeScript
18 lines
423 B
TypeScript
import { GameEnv } from "./Config";
|
|
import { DefaultConfig, DefaultServerConfig } from "./DefaultConfig";
|
|
|
|
export const preprodConfig = new (class extends DefaultServerConfig {
|
|
r2Bucket(): string {
|
|
return "openfront-staging";
|
|
}
|
|
env(): GameEnv {
|
|
return GameEnv.Preprod;
|
|
}
|
|
discordRedirectURI(): string {
|
|
return "https://openfront.dev/auth/callback";
|
|
}
|
|
numWorkers(): number {
|
|
return 3;
|
|
}
|
|
})();
|