diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md
index ffee94c..de8d731 100644
--- a/.github/CONTRIBUTING.md
+++ b/.github/CONTRIBUTING.md
@@ -21,7 +21,7 @@ You don't need to write code to contribute; all contributions are welcome and en
- [Submit a bug report](#submitting-a-bug-report) issue
- Help with bug triage
- [Request a new feature (or an improvement to an existing feature)](#submitting-a-feature-request)
-- [Improve documentation](#updating-documentation) (the [website](https://discordtickets.eartharoid.me), or JSDoc comments)
+- [Improve documentation](#updating-documentation) (the [website](https://discordtickets.app), or JSDoc comments)
- [Help translate](#translating)
- Create a tutorial (a video or page on the docs)
- [Answer someone's question in Discussions](https://github.com/eartharoid/DiscordTickets/discussions/categories/support-q-a?discussions_q=category%3A%22Support+%28Q%26A%29%22+is%3Aunanswered)
diff --git a/README.md b/README.md
index 90b7a55..12925b7 100644
--- a/README.md
+++ b/README.md
@@ -1,8 +1,8 @@
-
+
-# [DiscordTickets](https://discordtickets.eartharoid.me)
+# [DiscordTickets](https://discordtickets.app)
[![GitHub stars](https://img.shields.io/github/stars/eartharoid/DiscordTickets?style=flat-square)](https://github.com/eartharoid/DiscordTickets/stargazers)
[![GitHub forks](https://img.shields.io/github/forks/eartharoid/DiscordTickets?style=flat-square)](https://github.com/eartharoid/DiscordTickets/stargazers)
@@ -70,18 +70,18 @@ If you choose SQLite, which is the default as it is the easiest, you don't need
## Getting started
-| [**Host it yourself**](https://discordtickets.eartharoid.me/installation) | [**Fully managed hosting**](https://discordtickets.eartharoid.me/hosting) | [**Public test bot**](https://discord.com/oauth2/authorize?permissions=8&scope=applications.commands%20bot&client_id=475371285531066368) |
+| [**Host it yourself**](https://discordtickets.app/installation) | [**Fully managed hosting**](https://discordtickets.app/hosting) | [**Public test bot**](https://discord.com/oauth2/authorize?permissions=8&scope=applications.commands%20bot&client_id=475371285531066368) |
|:-:|:-:|:-:|
| Recommended if you have a host and you've done this before. | Recommended if you have no idea what you're doing. | Try out the bot. Not recommended for production use. |
-| [Go to the docs »](https://discordtickets.eartharoid.me/installation) | [Learn more »](https://discordtickets.eartharoid.me/hosting) | [Add to Discord »](https://discord.com/oauth2/authorize?permissions=8&scope=applications.commands%20bot&client_id=475371285531066368) |
+| [Go to the docs »](https://discordtickets.app/installation) | [Learn more »](https://discordtickets.app/hosting) | [Add to Discord »](https://discord.com/oauth2/authorize?permissions=8&scope=applications.commands%20bot&client_id=475371285531066368) |
## Documentation
-You will find most of information you need at [discordtickets.eartharoid.me](https://discordtickets.eartharoid.me).
+You will find most of information you need at [discordtickets.app](https://discordtickets.app).
## Support
-If the [documentation](https://discordtickets.eartharoid.me) leaves you with questions, you can ask for help in the [discussions](https://github.com/eartharoid/DiscordTickets/discussions/categories/support-q-a) or join the support server on Discord.
+If the [documentation](https://discordtickets.app) leaves you with questions, you can ask for help in the [discussions](https://github.com/eartharoid/DiscordTickets/discussions/categories/support-q-a) or join the support server on Discord.
[![Discord](https://discordapp.com/api/guilds/451745464480432129/widget.png?style=banner4)](https://go.eartharoid.me/discord)
diff --git a/docs/README b/docs/README
index 3680bd6..c441397 100644
--- a/docs/README
+++ b/docs/README
@@ -1 +1 @@
-This documentation is intended to be accessed through the website (https://discordtickets.eartharoid.me)
\ No newline at end of file
+This documentation is intended to be accessed through the website (https://discordtickets.app)
\ No newline at end of file
diff --git a/mkdocs.yml b/mkdocs.yml
index 902d399..48e7041 100644
--- a/mkdocs.yml
+++ b/mkdocs.yml
@@ -2,7 +2,7 @@
site_name: DiscordTickets
site_description: An open-source & self-hosted Discord bot for ticket management.
site_author: eartharoid
-site_url: https://discordtickets.eartharoid.me
+site_url: https://discordtickets.app
# Repository
repo_name: eartharoid/DiscordTickets
diff --git a/package.json b/package.json
index cad12b6..cb93153 100644
--- a/package.json
+++ b/package.json
@@ -1,5 +1,5 @@
{
- "name": "@eartharoid/discordtickets",
+ "name": "@eartharoid/discord-tickets",
"version": "3.0.0",
"private": true,
"description": "An open-source Discord bot for ticket management",
@@ -25,7 +25,7 @@
"bugs": {
"url": "https://github.com/eartharoid/DiscordTickets/issues"
},
- "homepage": "https://discordtickets.eartharoid.me",
+ "homepage": "https://discordtickets.app",
"funding": "https://github.com/eartharoid/DiscordTickets/?sponsor=1",
"dependencies": {
"@eartharoid/i18n": "^0.0.1",
diff --git a/src/index.js b/src/index.js
index c959b86..0896a4f 100644
--- a/src/index.js
+++ b/src/index.js
@@ -15,7 +15,7 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see .
*
- * @name @eartharoid/discordtickets
+ * @name @eartharoid/discord-tickets
* @description An open-source Discord bot for ticket management
* @copyright 2021 Isaac Saunders
* @license GNU-GPLv3
diff --git a/src/server/index.js b/src/server/index.js
index e15e5b3..04f0d1a 100644
--- a/src/server/index.js
+++ b/src/server/index.js
@@ -1,7 +1,7 @@
const { Plugin } = require('../modules/plugins');
module.exports = class SettingsServer extends Plugin {
- constructor(client){
+ constructor(client) {
super(client, {
id: 'internal.settings'
}, {
diff --git a/user/example.config.js b/user/example.config.js
index fd03f1d..42f6cf1 100644
--- a/user/example.config.js
+++ b/user/example.config.js
@@ -10,14 +10,14 @@
* Quick Start
* ---------------------
*
- * > For detailed instructions, visit the documentation: https://discordtickets.eartharoid.me
+ * > For detailed instructions, visit the documentation: https://discordtickets.app
*
* ---------------------
* Support
* ---------------------
*
* > Discord support server: https://go.eartharoid.me/discord
- * > Documentation: https://discordtickets.eartharoid.me
+ * > Documentation: https://discordtickets.app
*
* ###############################################################################################
*/