Skip to content
/ trowel Public

Yet another simple project scaffolding tool

Notifications You must be signed in to change notification settings

tdaron/trowel

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Trowel

Trowel is a really lightweight project scaffolding tool.

Installation

You can either download this entire repo execute

go install .

or simply

go install github.com/kaporos/trowel@main

Usage

First, you must create your templates, so open a dir and put some files in it.

mkdir great-template
echo "print('hello world')" > great-template/main.py

So here we have the most basic python app.

Then, register the template using trowel

trowel register great-template

This command will make a copy of it inside of $HOME/.local/share/trowel (which means after that you can safely delete the great-template if you want to).

After registering some template, you can create a new project using

trowel new great-template my-new-project

And there you go ! my-new-project was just created !

If you don't specify any name, then the project will be created in /tmp directory.

About

Yet another simple project scaffolding tool

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages