python3 -m venv .venv
source .venv/bin/activate # On macOS/Linux
# or
.\.venv\Scripts\activate # On Windows PowerShell
pip install -r requirements.txt
Create a .env
file in the project root directory with your Discord bot token:
SECRET_BOT_TOKEN=your_discord_bot_token_here
Make sure you have the python-dotenv
package installed if you use .env
files.
Run the bot module with:
python3 -m market_bot