godo is a CLI tool that simplifies the execution of scripts by managing them in a configuration file.
- Clone the repository:
git clone https://github.com/st0pcha/godo.git
cd godo
- Build and install using Golang:
go build -o godo ./cmd
- Add
./godo
to your environment's PATH - Enjoy!
The .godo file should be placed in root of your project and contain a list of commands you need. For example:
run=node index.js
echo=echo Hello World!
python=python main.py
To initialize .godo (configuration) file in your project, run:
godo --init
To view all available godo commands, run:
godo --help
To execute a command defined in .godo file, run:
godo <command>
like a:
godo run
godo dev
godo test
godo python