summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorseth <[email protected]>2023-01-08 21:35:24 -0500
committerseth <[email protected]>2023-01-08 21:35:24 -0500
commit6b948bbf4c8579b4af1dc819257c7f321e1200bc (patch)
tree10c733851eba601862249c76c1573a4856471f6e
parenta00262ac5a79360a9466b464173af24db5006148 (diff)
docs: add dev setup instructions
-rw-r--r--README.md13
1 files changed, 13 insertions, 0 deletions
diff --git a/README.md b/README.md
index 5d16894..e687d63 100644
--- a/README.md
+++ b/README.md
@@ -6,3 +6,16 @@ this is so crazy and silly and might be one of the coolest projects ever!!!!!!
-average person that finds out that moyai bot exists
-🗿
+
+
+## dev setup
+
+```shell
+python -m venv .env
+.\.env\Scripts\activate.ps1 # for powershell (windows)
+source .env/bin/activate # for linux
+
+pip install flit
+flit install --deps=develop --only-deps
+pre-commit install
+```