aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md9
1 files changed, 9 insertions, 0 deletions
diff --git a/README.md b/README.md
index 7d945d2..6233eb9 100644
--- a/README.md
+++ b/README.md
@@ -1,2 +1,11 @@
# infra
Infrastructure for Python Discord
+
+# Local dev setup
+1. Create a virtual environment `python -m venv venv`
+1. Activate the virtual environment
+ - Windows `.\venv\Scripts\activate`
+ - Linux `source venv/bin/activate`
+1. Update pip and builder deps `python -m pip install --upgrade pip wheel setuptools`
+1. Install project dependancies `python -m pip install -r requirements.txt`
+1. Install the pre-commit hook `pre-commit install`