tact
tact copied to clipboard
`tact-init` utility to create Tact template projects
It should basically create a tact-template-like project, perhaps with some interactive and non-interactive user-specified parameters, sort of what blueprint does.
For this small task, it's probably a good idea to either make something like @tact-lang/create-tact (like https://github.com/ton-org/create-ton) or consider another small CLI tool to bin/ just like you recently did with unboc.
The first allows us to utilize create commands of various package managers of Node.js ecosystem, just like shown for create-ton package in our docs: https://docs.tact-lang.org/#start-2
or consider another small CLI tool to bin/ just like you recently did with unboc.
yep, this is exactly what's going on here :)
basically, if I have the Tact package installed, I would like to be able to create Tact projects without having to clone tact-template
basically, if I have the Tact package installed, I would like to be able to create Tact projects without having to clone
tact-template
In that case, we might just add a tact --init flag
Btw, if we add a LICENSE file to a template, we'll probably want to write something like {{project-name}} in it to replace it in this tool after initializing. We'll probably want to add more placeholders like this for this tool in template