-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
BREAKING_CHANGE: Added default settings file
- Loading branch information
1 parent
60aa74d
commit 066ba2f
Showing
1 changed file
with
82 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
# !-----------------------------------------------------------------------------------------------! | ||
# Welcome to the main configuration of the foundation system | ||
# | ||
# This file contains all the main settings of the discord bot in here | ||
# !-----------------------------------------------------------------------------------------------! | ||
# **NOTE: This file is here to show the default methods that need to be inside the bot at all times!** | ||
# ------------------------------------------------------------------------------------------------- | ||
# The essential setting for the bot. | ||
# **IMPORTANT** these settings need to be configured! | ||
# ------------------------------------------------------------------------------------------------- | ||
Bot: | ||
|
||
# The token for the bot | ||
# A token can be made inside the discors applications portal | ||
# https://discord.com/developers/applications | ||
Token: "0000000000000000000000000000000000000000" | ||
|
||
# The main guild of the bot | ||
MainGuild: "000000000000000000" | ||
|
||
# The name of your bot | ||
Name: "DiscordBot" | ||
|
||
# ------------------------------------------------------------------------------------------------- | ||
# Manage the activity of the bot | ||
# !!This system is still in BETA!! | ||
# ------------------------------------------------------------------------------------------------- | ||
Activity: | ||
|
||
# **IMPORTANT** THIS FEATURE IS NOT WORKING AT THIS MOMENT | ||
# The type of the activity | ||
# Possible options: PLAYING, STREAMING, LISTENING and WATCHING | ||
Type: "WATCHING" | ||
|
||
# The message after the activity type | ||
Message: "Foundation" | ||
|
||
Embed: | ||
Link: "https://greazi.com" | ||
Footer: "Copyright ©Greazi" | ||
Image: | ||
Author: "https://www.greazi.com/wp-content/uploads/2021/08/cropped-bannerempty.png" | ||
Footer: "https://www.greazi.com/wp-content/uploads/2021/08/cropped-bannerempty.png" | ||
|
||
Commands: | ||
Stop: | ||
Enabled: true | ||
AllowedRoles: | ||
- owner | ||
|
||
# ------------------------------------------------------------------------------------------------- | ||
# Manage the console of the bot | ||
# ------------------------------------------------------------------------------------------------- | ||
Console: | ||
Commands: | ||
# Should console commands be enabled? | ||
Enabled: true | ||
|
||
# Commands that are disabled | ||
Disabled: [] | ||
|
||
# ------------------------------------------------------------------------------------------------- | ||
# Configure the database settings here | ||
# ------------------------------------------------------------------------------------------------- | ||
Database: | ||
|
||
# Should we store all the data on the database | ||
Enabled: false | ||
|
||
# The database information | ||
Host: "localhost" | ||
Port: 3306 | ||
Databas: "Foundation" | ||
Username: "Foundation_User" | ||
Password: "Foundation_Password" | ||
|
||
# ------------------------------------------------------------------------------------------------- | ||
# List of section names that will print informative messages about their features. | ||
# If you have issues, try enabling either of these sections to self-diagnose: | ||
# [Startup, Database, SlashCommandHandler] | ||
# ------------------------------------------------------------------------------------------------- | ||
Debug: [] |