From 06d751fb27f583c14dfb768561cce894699286b8 Mon Sep 17 00:00:00 2001 From: Mohammed Sohail Date: Mon, 1 Nov 2021 08:58:23 +0300 Subject: [PATCH] update: dev env instructions --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f646d40..9ad6cb4 100644 --- a/README.md +++ b/README.md @@ -5,8 +5,8 @@ A static website built with pelican. ## Development ```sh -python3 -m venv env -source env/bin/activate +python3 -m venv .venv +source .venv/bin/activate pip install -r requirements.txt make devserver ```