TreeLadder is a command-line tool written in Go that helps developers quickly create file and directory structures for new projects. It provides an interactive interface to create nested folders and files, allowing you to scaffold project structures with minimal effort. The tool guides you through the creation process step by step, making it easy to build complex directory hierarchies without having to manually create each folder and file.
- Create a new project:
treeladder create project_name - Follow the interactive prompts to create folders and files
- For each folder, you can choose to create nested content
- Navigate through the creation process by answering yes/no questions
- Check the version:
treeladder versionortreeladder -v
- From source:
- Clone the repository:
git clone https://github.com/owlfacegames/treeladder - Build the binary:
cd treeladder && go build - Move to a directory in your PATH:
mv treeladder /usr/local/bin/or just do go install from project root
- Clone the repository:
