tarantool / tt

Command-line utility to manage Tarantool applications
Other
101 stars 12 forks source link

tt create: enable tt create Without Prior `tt init` #1028

Open Satbek opened 1 week ago

Satbek commented 1 week ago

Currently, the tt create command requires users to run tt init beforehand to create custom template. The proposed feature allows tt create to function without needing prior tt init.

Current Workflow:

tt init
tt create simple --name MyTarantoolApp

simple locates in templates/simple dir.

Proposed Workflow:

tt create --path path_to_template --name MyTarantoolApp