2022-12-19 03:37:10 -05:00
|
|
|
import Config
|
|
|
|
|
2022-12-22 17:27:55 -05:00
|
|
|
config :chessh,
|
|
|
|
ecto_repos: [Chessh.Repo],
|
2022-12-28 01:50:22 -05:00
|
|
|
key_dir: Path.join(Path.dirname(__DIR__), "priv/keys"),
|
2023-01-04 02:03:38 -05:00
|
|
|
max_sessions: 255,
|
|
|
|
ascii_chars_json_file: Path.join(Path.dirname(__DIR__), "priv/ascii_chars.json")
|
2022-12-19 03:37:10 -05:00
|
|
|
|
2022-12-29 19:21:20 -05:00
|
|
|
config :chessh, RateLimits,
|
|
|
|
jail_timeout_ms: 5 * 60 * 1000,
|
2022-12-29 19:49:42 -05:00
|
|
|
jail_attempt_threshold: 15,
|
2023-01-02 21:10:23 -05:00
|
|
|
max_concurrent_user_sessions: 5,
|
2023-01-13 23:07:00 -05:00
|
|
|
player_session_message_burst_ms: 500,
|
2023-01-19 16:04:10 -05:00
|
|
|
player_session_message_burst_rate: 8,
|
2023-01-31 14:44:15 -05:00
|
|
|
player_public_keys: 15,
|
|
|
|
create_game_ms: 60 * 1000,
|
2023-02-01 16:57:14 -05:00
|
|
|
create_game_rate: 3,
|
2023-02-02 00:55:06 -05:00
|
|
|
discord_notification_rate: 30,
|
2023-02-01 16:57:14 -05:00
|
|
|
discord_notification_rate_ms: 1000
|
2023-01-19 16:04:10 -05:00
|
|
|
|
|
|
|
config :chessh, Web,
|
2023-01-31 16:01:35 -05:00
|
|
|
discord_oauth_login_url: "https://discord.com/api/oauth2/token",
|
|
|
|
discord_user_api_url: "https://discord.com/api/users/@me",
|
|
|
|
discord_scope: "identify"
|
2023-01-19 16:04:10 -05:00
|
|
|
|
2023-02-01 16:57:14 -05:00
|
|
|
config :chessh, DiscordNotifications,
|
2023-02-09 00:06:58 -05:00
|
|
|
game_move_notif_delay_ms: 0,
|
|
|
|
game_created_notif_delay_ms: 15_000,
|
2023-02-03 14:58:19 -05:00
|
|
|
reschedule_delay: 3 * 1000
|
2023-02-01 16:57:14 -05:00
|
|
|
|
2023-01-19 16:04:10 -05:00
|
|
|
config :joken, default_signer: "secret"
|
2022-12-28 01:50:22 -05:00
|
|
|
|
2022-12-19 03:37:10 -05:00
|
|
|
import_config "#{config_env()}.exs"
|