From fa30a79b06ddbaebd68bb9be1bb7a59a48890bf0 Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh Date: Thu, 28 Dec 2023 06:11:18 -0500 Subject: [PATCH] misc(repo): added development instructions to my readme --- README.md | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 14672dd..14f5694 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,23 @@ # SeaCogs -My assorted cogs for Red-DiscordBot. \ No newline at end of file +My assorted cogs for Red-DiscordBot. + +## Development + +To get started with a development environment, first clone this repository. + +```sh +git clone https://coastalcommits.com/SeaswimmerTheFsh/SeaCogs.git +``` + +Then, install Poetry. + +```sh +pip install poetry +``` + +Finally, use Poetry to create a virtual environment with all of the dependencies required by my cogs. + +```sh +poetry install +```