all repos — py-vite @ b6074e57a9a0cef786f68535ea1189c64668cbc4

the original vite, written in python

chore: add template option in config
icyphox icyph0x@protonmail.com
Thu, 22 Mar 2018 14:30:28 +0530
commit

b6074e57a9a0cef786f68535ea1189c64668cbc4

parent

28975a11bd577143a97e7558f08670edf04b96dc

1 files changed, 3 insertions(+), 2 deletions(-)

jump to
M vite/vite.pyvite/vite.py

@@ -43,7 +43,7 @@ os.symlink(os.path.join(cur_path, 'make.py'),

os.path.join(abs_path, 'make.py')) print(good('Created project directory at %s.' % (abs_path))) except FileExistsError: - print(bad('Error: specified path exists')) + print(bad('Error: specified path exists.')) def create_config(path):

@@ -53,7 +53,8 @@

title = '' author = '' header = '' -footer = '' +footer = '' +template = '' # name of template """)