Generate projects from templates
This repository has been archived on 2023-03-02. You can view files and clone it, but cannot push or open issues or pull requests.
Go to file
Dmitriy Pleshevskiy 007fe508cc
Update README.md
Add list to params
2018-06-11 08:47:19 +03:00
ictmpl Add params and conditions for template 2018-06-11 07:37:28 +03:00
.gitignore Initial commit 2018-06-10 10:11:22 +03:00
LICENSE Initial commit 2018-05-30 23:25:49 +03:00
README.md Update README.md 2018-06-11 08:47:19 +03:00
setup.py Initial commit 2018-06-10 10:11:22 +03:00

README.md

About ictmpl

This script allows a create new project using a ready-made templates.

You can use template on local machine or repositories.

By default it looks for a name of template in the official repository

Installing

pip install ictmpl

or globally:

sudo -H pip install ictmpl

Usage

create

Create new project by template

ictmpl create <project_path> <template_name>

Params:

  • project_path - Path to new project directory
  • template_name - Name of template / link to git repository / local path

Examples:

ictmpl create flaskproject flask-blank

ictmpl create myproject ../my-local-template/

ictmpl create /var/www/myproject https://github.com/ictmpl/flask-blank.git