{"id":18274320,"url":"https://github.com/dizoftteam/dron","last_synced_at":"2026-04-26T20:31:49.067Z","repository":{"id":56483702,"uuid":"309639100","full_name":"DizoftTeam/dron","owner":"DizoftTeam","description":"Small shell command executor","archived":false,"fork":false,"pushed_at":"2020-11-20T05:51:48.000Z","size":23,"stargazers_count":2,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-06-02T12:35:50.336Z","etag":null,"topics":["bash","cmd","go"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/DizoftTeam.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2020-11-03T09:43:09.000Z","updated_at":"2024-12-23T06:04:43.000Z","dependencies_parsed_at":"2022-08-15T19:40:15.340Z","dependency_job_id":null,"html_url":"https://github.com/DizoftTeam/dron","commit_stats":null,"previous_names":[],"tags_count":8,"template":false,"template_full_name":null,"purl":"pkg:github/DizoftTeam/dron","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DizoftTeam%2Fdron","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DizoftTeam%2Fdron/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DizoftTeam%2Fdron/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DizoftTeam%2Fdron/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/DizoftTeam","download_url":"https://codeload.github.com/DizoftTeam/dron/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DizoftTeam%2Fdron/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32312225,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-26T19:15:34.056Z","status":"ssl_error","status_checked_at":"2026-04-26T19:15:15.467Z","response_time":129,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["bash","cmd","go"],"created_at":"2024-11-05T12:09:13.461Z","updated_at":"2026-04-26T20:31:49.042Z","avatar_url":"https://github.com/DizoftTeam.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Dron\n\nSmall shell command executor\n\nNo more raw `bash` scripts!\n\n## How to use\n\nCreate config in `dron.yaml` and run!  \nExample of config see below\n\n```bash\ndron \u003ccommand_name\u003e\n```\n\n\u003e Development only!  \n\u003e `dron -debug \u003ccommand_name\u003e`\n\n### List of available commands\n\n* `dron \u003ccommand_name\u003e` - Run specified command\n* `dron -debug \u003ccommand_name\u003e` - Run specified command with debug info\n* `dron -list` - Print list of commands name\n* `dron -version` - Print application version\n\n## Installation\n\n### ArchLinux\n\nYou can install it from [AUR](https://aur.archlinux.org/packages/dron/)\n\n### Manual (Debian like. Redhat)\n\nRequirements:\n\n* [Go](https://golang.org/)\n\n```bash\ngit clone https://github.com/DizoftTeam/dron.git\ncd dron\ngo build -o dron main.go\n# For all users\nsudo ln -s /home/\u003cuser\u003e/path/to/dron /usr/local/bin/dron\n```\n\n## Example of config\n\nFile name `dron.yaml` or `dron.yml`\n\n\u003e All configs below is actual and work  \n\u003e Do not use example file in a repository - this is only for development\n\n### v1.2.0 [05.11.2020]\n\n```yaml\ncommands:\n  - name: up_www\n    args:\n      arg0: World\n      arg1: $env(APP_ENV)\n      arg2: $input\n    commands:\n      - echo Hello $arg0\n      - echo env_param_APP_ENV $arg1\n      - echo \"arg0 $arg0 with quotes on end $arg1\"\n      - echo \"user input is $arg2\"\n```\n\n* Add support for `$input` command\n  * Getting user input like `[\u003carg_name\u003e]\u003e`\n\n### v1.1.0 [01.11.2020]\n\n```yaml\ncommands:\n  - name: up_www\n    args:\n      arg0: World\n      arg1: $env(APP_ENV)\n    commands:\n      - echo Hello $arg0\n      - echo env_param_APP_ENV $arg1\n      - echo \"arg0 $arg0 with quotes on end $arg1\"\n```\n\n* Add support for `$env` command\n  * If env param not find in system - error will be provided\n* Bug fix — double quotes not removing after argument name\n* If `.env` exist — it will be load automatically\n\n### v1.0.0 [31.10.2020]\n\n```yaml\ncommands:\n  - name: up_www\n    args:\n      arg0: World\n    commands:\n      - echo Hello $arg0\n```\n\n## Known troubles\n\n* Each command will be executing from the current folder. Means that if you are using command like `cd` - the next\n  command will be running not from changed directory. To solve this problem you can\n  use `\u0026\u0026` (`cd /tmp \u0026\u0026 touch main.go`)\n\n## Contributing\n\nIf you found some issue - please welcome to [issue create page](https://github.com/DizoftTeam/dron/issues/new)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdizoftteam%2Fdron","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdizoftteam%2Fdron","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdizoftteam%2Fdron/lists"}