mirror of
https://github.com/openfrontio/OpenFrontIO.git
synced 2026-07-04 12:36:06 +00:00
18 lines
413 B
TypeScript
18 lines
413 B
TypeScript
import { GameEnv } from "./Config";
|
|
import { DefaultConfig, DefaultServerConfig } from "./DefaultConfig";
|
|
|
|
export const prodConfig = new (class extends DefaultServerConfig {
|
|
r2Bucket(): string {
|
|
return "openfront-prod";
|
|
}
|
|
numWorkers(): number {
|
|
return 6;
|
|
}
|
|
env(): GameEnv {
|
|
return GameEnv.Prod;
|
|
}
|
|
discordRedirectURI(): string {
|
|
return "https://openfront.io/auth/callback";
|
|
}
|
|
})();
|