-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
40 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
|
||
## Getting Started | ||
|
||
1. **Clone this repository:** | ||
|
||
```bash | ||
git clone https://github.com/lilstiffy/StiffyBot.git | ||
``` | ||
|
||
2. **Install the required dependencies:** | ||
|
||
```bash | ||
pip install -r requirements.txt | ||
``` | ||
|
||
3. **Set up your Discord bot token:** | ||
|
||
- Create a new Discord bot on the [Discord Developer Portal](https://discord.com/developers/applications). | ||
- Copy the token and add it to a file named `.env` in the project root: | ||
|
||
```env | ||
DISCORD_TOKEN=your-bot-token | ||
OPEN_AI_TOKEN=your-open-ai-token | ||
``` | ||
|
||
4. **Run the bot:** | ||
|
||
```bash | ||
python bot.py | ||
``` | ||
|
||
Your bot should now be online and ready to respond to commands in your Discord server! | ||
|
||
## Contributing | ||
|
||
If you'd like to contribute to this project, feel free to do so! | ||
## License | ||
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details. |