1
Fork 0
mirror of https://github.com/wlinator/luminara.git synced 2024-10-02 18:03:12 +00:00

chore: Improvements

This commit is contained in:
wlinator 2024-09-02 06:36:36 -04:00
parent d7ad1c2585
commit f666f22995
3 changed files with 9 additions and 4 deletions

View file

@ -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` 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. 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 docker compose up -d --build

View file

@ -4,7 +4,9 @@ services:
container_name: lumi-core container_name: lumi-core
restart: always restart: always
volumes: volumes:
- ./settings.yaml:/usr/src/app/settings.yaml - type: bind
source: ./settings.yaml
target: /usr/src/app/settings.yaml
env_file: env_file:
- path: ./.env - path: ./.env
required: true required: true

View file

@ -154,6 +154,7 @@ class Introduction(commands.Cog):
author_icon_url=ctx.author.display_avatar.url, author_icon_url=ctx.author.display_avatar.url,
description=description, description=description,
footer_text=CONST.STRINGS["intro_content_footer"], footer_text=CONST.STRINGS["intro_content_footer"],
hide_name_in_description=True,
) )
view = IntroductionFinishButtons(ctx) view = IntroductionFinishButtons(ctx)