saransh-cli
v1.2.0
Published
CLI tool to create SSH automation backend projects
Maintainers
Readme
saransh-cli
CLI tool to quickly scaffold SSH automation backend projects.
Usage
With npx (no installation needed)
npx saransh-cli init my-projectWith global installation
npm install -g saransh-cli
saransh init my-projectInteractive mode (prompts for project name)
saransh initCreate in current directory
saransh init .Commands
saransh init [folder-name]- Create a new projectsaransh init .- Create project in current directorysaransh init(no args) - Interactive mode, prompts for name
What it does
- Clones the ssh-automation-backend template
- Updates project name in package.json
- Initializes a fresh git repository
- Sets up the project structure
Next steps after creation
cd my-project
cp .env.example .env
# Edit .env with your credentials
bun install
bun run index.ts