From 867ccb9dfd86df750e66a503173541ec68d3bca9 Mon Sep 17 00:00:00 2001 From: cube Date: Sat, 9 May 2026 12:58:20 +0000 Subject: [PATCH] Update Development setup (Windows) --- Development-setup-%28Windows%29.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Development-setup-%28Windows%29.md b/Development-setup-%28Windows%29.md index aa41e34..be71fa0 100644 --- a/Development-setup-%28Windows%29.md +++ b/Development-setup-%28Windows%29.md @@ -1,6 +1,8 @@ # Quick n dirty -- after cloning, run `py -3 -m venv .venv` in the root directory and then `.venv\Scripts\activate` +- after cloning, run `py -3 -m venv .venv` in the root directory +- and then `.venv\Scripts\activate` to activate the virtual environment +- on windows you might need to do `Set-ExecutionPolicy Unrestricted -Force` first and then activate the virtual environment - then `pip install Flask` inside the virtual env - you might also need to init a database, so use `flask --app myriad init-db` - to start the site use `flask --app myriad run --debug`