From 0cacd7b7657f9e585f0f6950ff37bdece807ca9d Mon Sep 17 00:00:00 2001 From: Shivang Bhandari Date: Fri, 21 Jul 2017 10:50:52 +0530 Subject: [PATCH 1/3] Update : Command for python 3 added --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index b2c4236..c69f21b 100644 --- a/README.md +++ b/README.md @@ -12,6 +12,11 @@ To monitor your source directory for changes, and recompile files if they change python build.py & python -m SimpleHTTPServer && fg ``` +For Python 3 : +``` +python build.py & python -m http.server && fg +``` + This will recursively search `./templates` for templates (any file whose name does not start with `.` or `_`) and build them to `.`. Commit both the rendered html and the file inside `/templates/` From c8fa127357df3f7ba4dadc2ae176a2b7a3f4ff21 Mon Sep 17 00:00:00 2001 From: Shivang Bhandari Date: Mon, 24 Jul 2017 10:19:50 +0530 Subject: [PATCH 2/3] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c69f21b..cd31c4a 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ To monitor your source directory for changes, and recompile files if they change python build.py & python -m SimpleHTTPServer && fg ``` -For Python 3 : +For Python 3.6.0 : ``` python build.py & python -m http.server && fg ``` From 35841a2e856c5e4b808312927c9e87ac3ea1c61e Mon Sep 17 00:00:00 2001 From: Shivang Bhandari Date: Fri, 4 Aug 2017 22:21:10 +0530 Subject: [PATCH 3/3] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index cd31c4a..874eb43 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ To monitor your source directory for changes, and recompile files if they change python build.py & python -m SimpleHTTPServer && fg ``` -For Python 3.6.0 : +For Python > 3.3 : ``` python build.py & python -m http.server && fg ```