From cc03b0f0e6e83685d81fba4e4ad1e2f73139b004 Mon Sep 17 00:00:00 2001 From: Joey Hines Date: Wed, 21 Aug 2019 12:50:37 -0500 Subject: [PATCH] Updated readme to point to the geoffrey bot docs --- README.md | 25 ++----------------------- 1 file changed, 2 insertions(+), 23 deletions(-) diff --git a/README.md b/README.md index fbc37c0..c41caed 100644 --- a/README.md +++ b/README.md @@ -1,27 +1,6 @@ # Geoffrey-DiscordBot -The Geoffrey Discord Bot is designed to work with the Goeffrey Command API, implementing all its commands for discord +The Geoffrey Discord Bot is designed to work with the Geoffrey Command API, implementing all its commands for discord -## Getting Started -1. Setup [Geoffrey](https://geoffrey.zerohighdef.com/) -2. Clone this repo -2. Go to the directory you cloned the repo into and run `pip install .` -3. Now that the bot is installed as a package, you can create a startup script to run it. Bellow is an example: -```python -from GeoffreyBot import bot -# Discord token for the bot to use -discord_token = "" +[Read the docs!](https://geoffrey.zerohighdef.com/bot_setup.html) -# Base link to the Geoffrey API -geoffrey_api_link = "" - -# Geoffrey API token -geoffrey_token = "" - -# Start Bot -if __name__ == '__main__': - print("Starting bot and connecting to {}".format(geoffrey_api_link)) - bot.start_bot(discord_token=discord_token, - geoffrey_base_url=geoffrey_api_link, - geoffrey_api_token=geoffrey_token) -```