diff --git a/dolly/commands.py b/dolly/commands.py index b0ae6e0..dd9f6a7 100644 --- a/dolly/commands.py +++ b/dolly/commands.py @@ -3,7 +3,7 @@ import discord from discord import app_commands from .database import add_project, add_task -class DollyProjectTrackerCommands(app_commands.Group): +class DollyProjectTrackerCommands(app_commands.Group, name="Dolly", description="Commands for Dolly's project tracker."): @app_commands.command(name="create-project", description="Create a new project in the database.") async def create_project(self, interaction: discord.Interaction, name: str, description: str): diff --git a/start_dolly.bat b/start_dolly.bat index 6050e4b..f6cc77d 100644 --- a/start_dolly.bat +++ b/start_dolly.bat @@ -1,5 +1,14 @@ @echo off echo Starting Dolly the TODO Bot... + +REM Change the directory to where your project is located +cd E:\Development\AI Development\Dolly + +REM Activate the virtual environment +call .venv\Scripts\activate + +REM Run the Python script python main.py + echo Dolly stopped. Press any key to exit. -pause > nul +pause >nul