Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/flawiddsouza/shortcommand
Easily run a set of commands quickly using a global yaml configuration file
https://github.com/flawiddsouza/shortcommand
Last synced: 15 days ago
JSON representation
Easily run a set of commands quickly using a global yaml configuration file
- Host: GitHub
- URL: https://github.com/flawiddsouza/shortcommand
- Owner: flawiddsouza
- License: mit
- Created: 2022-08-13T12:23:40.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-08-15T09:28:43.000Z (about 2 years ago)
- Last Synced: 2024-10-12T13:12:59.009Z (about 1 month ago)
- Language: Go
- Homepage:
- Size: 7.81 KB
- Stars: 16
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# shortcommand
Easily run a set of commands quickly using a yaml configuration file
## Usage
Create a yaml file named shortcommand.yml or anything you want. Here's an example:
```yaml
shortcommands:
- name: Journals
commands:
- name: ui
description: Pull, build and deploy Web-UI
cwd: ~/Apps/Journals/Web-UI
do:
- git pull
- npm run build
- name: api
description: Pull, build and deploy API
cwd: ~/Apps/Journals/API
do:
- git pull
- shards build --release
- pm2 restart "Journals API"
- pm2 reset "Journals API"
- name: QuickNote
commands:
- name: api
description: Pull, build and deploy API
cwd: ~/Apps/quick-note/API
do:
- git pull
- pm2 restart "Quick Note API"
- pm2 reset "Quick Note API"
- name: restart-api
description: Restart API in pm2
do:
- pm2 restart "Quick Note API"
- pm2 reset "Quick Note API"
```Then add this in your ~/.bashrc or ~/.zshrc:
```bash
export SHORTCOMMAND_CONFIG=/path/to/shortcommand.yml
```Now if you run `shortcommand` without any arguments, you'll see this:
```bash
Available commands
Journals
ui Pull, build and deploy Web-UI
api Pull, build and deploy API
QuickNote
api Pull, build and deploy API
restart-api Restart API in pm2
```
Works as a readme for your command sets in case you forget what options are available for you to use.Now the above defined short commands will be accessible and can be used by running:
```bash
shortcommand Journals ui
shortcommand Journals api
shortcommand QuickNote api
shortcommand QuickNote restart-api
```Note: Commands mentioned under `do:` will execute in sequence and will not continue to the next one if the one that's running fails.
This project was created mainly because I have several apps that I run on my server and finding the right set of commands for deploying an app is a hassle. So this basically documents the set of commands for each of my projects, as well as gives me quick access to them.
## Installing on Linux (tested on Ubuntu)
```bash
wget https://github.com/flawiddsouza/shortcommand/releases/download/v0.0.3/shortcommand_0.0.3_Linux_x86_64.tar.gz
tar -xf shortcommand_0.0.3_Linux_x86_64.tar.gz
mv shortcommand ~/.local/bin
rm shortcommand_0.0.3_Linux_x86_64.tar.gz
```
You should then be able to use the `shortcommand` command anywhere you are.## Testing
```bash
SHORTCOMMAND_CONFIG=shortcommands-example.yml go run . Test test
SHORTCOMMAND_CONFIG=shortcommands-example.yml go run . Test test2
SHORTCOMMAND_CONFIG=shortcommands-example.yml go run . Test test3
```## Build Testing
```bash
goreleaser build --snapshot --rm-dist
```## Build for release
```bash
go tag vX.X.X
git push origin vX.X.X
goreleaser release --rm-dist
```