From f666f229953bba4d3d0cd3da8c4b1e50b4f564ab Mon Sep 17 00:00:00 2001 From: wlinator Date: Mon, 2 Sep 2024 06:36:36 -0400 Subject: [PATCH] chore: Improvements --- README.md | 8 +++++--- docker-compose.prod.yml | 4 +++- modules/misc/introduction.py | 1 + 3 files changed, 9 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index b205343..9cd6422 100644 --- a/README.md +++ b/README.md @@ -31,11 +31,13 @@ Additionally, you'll need to create a Discord bot application and obtain a token 1. Copy the contents from [`docker-compose.prod.yml`](docker-compose.prod.yml) to a new file named `docker-compose.yml` in an empty directory. -2. Copy the contents from [`.env.example`](.env.example) to a new file named `.env` in the same directory. +3. Copy [settings.yaml](settings.yaml) to the same directory. -3. Fill out the `.env` file with your specific configuration details. +3. Copy the contents from [`.env.example`](.env.example) to a new file named `.env` in the same directory. -4. Run the following command in your terminal: +4. Fill out the `.env` file with your specific configuration details. + +5. Run the following command in your terminal: ``` docker compose up -d --build diff --git a/docker-compose.prod.yml b/docker-compose.prod.yml index 011d432..fc88240 100644 --- a/docker-compose.prod.yml +++ b/docker-compose.prod.yml @@ -4,7 +4,9 @@ services: container_name: lumi-core restart: always volumes: - - ./settings.yaml:/usr/src/app/settings.yaml + - type: bind + source: ./settings.yaml + target: /usr/src/app/settings.yaml env_file: - path: ./.env required: true diff --git a/modules/misc/introduction.py b/modules/misc/introduction.py index 152e876..3a76292 100644 --- a/modules/misc/introduction.py +++ b/modules/misc/introduction.py @@ -154,6 +154,7 @@ class Introduction(commands.Cog): author_icon_url=ctx.author.display_avatar.url, description=description, footer_text=CONST.STRINGS["intro_content_footer"], + hide_name_in_description=True, ) view = IntroductionFinishButtons(ctx)