diff --git a/config.default.yml b/config.default.yml deleted file mode 100644 index 910ef572..00000000 --- a/config.default.yml +++ /dev/null @@ -1,68 +0,0 @@ -guild_id: 000000000000000000 -emoji_guild_ids: [000000000000000000] -bot: - token: your_bot_token - prefix: "!" - status: "your commands!" - log_level: "INFO" - webhook_url: "https://canary.discord.com/api/webhooks/000000000000000000/xxxxxxxxxxxxxxxxxxxxxxxxxxx-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" - intents: - messages: True - message_content: True - guilds: True - members: True - bans: True - reactions: True - case_insensitive: True - sync_commands: True - sync_on_cog_reload: True -emoji: - "yes": 000000000000000000 - "no": 000000000000000000 -roles: - staff: 000000000000000000 - trial_mod: 000000000000000000 - chat_mod: 000000000000000000 - muted: 000000000000000000 - restricted: 000000000000000000 - vip: 000000000000000000 - nitro_booster: 000000000000000000 -categories: - tickets: 000000000000000000 - moderation: 000000000000000000 - logs: 000000000000000000 - development: 000000000000000000 -channels: - public: - questions_and_help: 000000000000000000 - mod: - moderation: 000000000000000000 - logs: - mute_log: 000000000000000000 - ticket_log: 000000000000000000 - nitro_log: 000000000000000000 - server: - tickets: 000000000000000000 - starboard: - star_limit: 0 - channel_id: 000000000000000000 - blacklisted: [000000000000000000] - joyboard: - joy_limit: 0 - channel_id: 000000000000000000 - blacklisted: [000000000000000000] - timeout: 0 -reddit: - subreddit: "snackbox" - channel: 000000000000000000 - client_id: your_reddit_client_id - client_secret: your_reddit_client_secret - user_agent: "Chiya:v1.0.0 (for /r/snackbox)" -database: - database: chiya - host: mariadb - user: chiya - password: your_secure_password -privatebin: - url: "https://privatebin.net" -timeout_limit: 3600 diff --git a/config.example.toml b/config.example.toml new file mode 100644 index 00000000..991ed83f --- /dev/null +++ b/config.example.toml @@ -0,0 +1,45 @@ +guild_id = 111111111111111111 + +[bot] +token = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" +prefix = "xxxxxxxxxxxxxx" +status = "your commands!" +log_level = "INFO" +webhook_url = "https://discord.com/api/webhooks/xxxxxxxxxxxxxxxxxx/xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" + +[database] +"host" = "127.0.0.1" +"user" = "chiya" +"password" = "xxxxxxxxx" +"database" = "chiya" +"url" = "sqlite:///chiya.db?charset=utf8mb4" + +[roles] +"staff" = 111111111111111111 +"trial" = 111111111111111111 + +[categories] +"tickets" = 111111111111111111 +"moderation" = 111111111111111111 +"logs" = 111111111111111111 +"development" = 111111111111111111 + +[channels] +tickets = 111111111111111111 +questions = 111111111111111111 +moderation = 111111111111111111 +ticket_log = 111111111111111111 +nitro_log = 111111111111111111 +chiya_log = 111111111111111111 + +[joyboard] +joy_limit = 10 +channel_id = 111111111111111111 +blacklisted = [111111111111111111, 222222222222222222, 333333333333333333] +timeout = 3 + +[hl] +timeout = 5 + +[privatebin] +url = "https://privatebin.net" \ No newline at end of file