all repos — py-vite @ 69f102bf0b70909517973ac9d0e322ec1e2de5b3

the original vite, written in python

docs: update usage instructions
Anirudh icyph0x@pm.me
Wed, 25 Apr 2018 16:52:34 +0530
commit

69f102bf0b70909517973ac9d0e322ec1e2de5b3

parent

915a86e13b2259f60a1632fbf9e9d1ec8f40ef20

1 files changed, 4 insertions(+), 6 deletions(-)

jump to
M README.mdREADME.md

@@ -15,25 +15,23 @@ ------------

Clone this repo and: ```console -$ pip3 install -r requirements.txt +$ pip install . # in the cloned directory ``` -**NOTE**: Don't delete the cloned repo, since `make.py` is symlinked upon project creation. - Usage ----- ```console -$ ./vite.py new <project-path> +$ vite new <project-path> ``` Write your Markdown files in the `pages` directory and execute: ```console -$ ./make.py # in project directory +$ vite build # in project directory ``` Rendered HTML will be in the `build` directory. Finally, run: ```console -$ ./make.py serve +$ vite serve # also in the project directory ``` to serve the contents of the `build` directory.