{"id":47723268,"url":"https://github.com/bkoropoff/dolang","last_synced_at":"2026-04-06T23:01:24.208Z","repository":{"id":348406655,"uuid":"1197595593","full_name":"bkoropoff/dolang","owner":"bkoropoff","description":"Do Language","archived":false,"fork":false,"pushed_at":"2026-04-05T20:52:33.000Z","size":1030,"stargazers_count":0,"open_issues_count":29,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2026-04-05T22:02:51.680Z","etag":null,"topics":["automation","ci-cd","devops","programming-language","shell"],"latest_commit_sha":null,"homepage":"https://bkoropoff.github.io/dolang/","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/bkoropoff.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE-APACHE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":"AGENTS.md","dco":null,"cla":null}},"created_at":"2026-03-31T17:57:25.000Z","updated_at":"2026-04-05T20:52:38.000Z","dependencies_parsed_at":"2026-04-04T21:01:36.943Z","dependency_job_id":"5068cd37-fe29-4e2f-b720-28954d2e6ddc","html_url":"https://github.com/bkoropoff/dolang","commit_stats":null,"previous_names":["bkoropoff/dolang"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/bkoropoff/dolang","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bkoropoff%2Fdolang","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bkoropoff%2Fdolang/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bkoropoff%2Fdolang/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bkoropoff%2Fdolang/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bkoropoff","download_url":"https://codeload.github.com/bkoropoff/dolang/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bkoropoff%2Fdolang/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31492751,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-06T17:22:55.647Z","status":"ssl_error","status_checked_at":"2026-04-06T17:22:54.741Z","response_time":112,"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":["automation","ci-cd","devops","programming-language","shell"],"created_at":"2026-04-02T19:54:54.323Z","updated_at":"2026-04-06T23:01:24.160Z","avatar_url":"https://github.com/bkoropoff.png","language":"Rust","readme":"# Do Language\n\nA scripting language for CI/CD, DevOps, and automation that melds declarative\nelegance with Unix elbow grease:\n\n- Flexibly define structured data and operate on it with lightweight,\n  indentation-oriented syntax.\n- Run external CLI programs directly.\n- Use built-in modules for common tasks such as HTTP, SQLite, and more.\n- Write ordinary code too: data structures, closures, iterators, classes,\n  exceptions, concurrency.\n\n\u003e **⚠️ Experimental:** Do is still in rapid development. The language syntax,\n\u003e standard library, and API are subject to change. Not recommended for\n\u003e production use.\n\n## Quick Look\n\n**Shell-like simplicity:**\n\n```\nrun gcc -o main main.c -Wall -Werror\n```\n\n**Call programs like functions:**\n\n```\nimport proc.run:\n  - uname\n  - git\n\nlet kernel = sub do uname -r\nlet branch = sub do git rev-parse --abbrev-ref HEAD\necho \"Building on $kernel, branch $branch\"\n```\n\n**Declarative and procedural in one syntax:**\n\n```\nimport progress container.podman: podman\n\nlet PACKAGES =\n  - gcc\n  - node\n\nprogress.with do podman.build\n  from: fedora:42\n  add:\n    target: /etc/sudoers.d/wheel\n    chmod: 0o640\n    content: |\n      %wheel ALL=(ALL) NOPASSWD: ALL\n\n  run: do progress.show\n    total: $PACKAGES.len\n    message: installing packages\n    icon: 📦\n    do |i|\n      for pkg = PACKAGES\n        i.message = \"installing $pkg\"\n        run dnf install -y $pkg\n        i.delta()\n\n  tag: my-image\n```\n\n## Getting Started\n\n### Prerequisites\n\n- Rust 1.92.0 or later\n\n### Building from Source\n\n```bash\n# Build the project\ncargo build --release\n\n# Run the shell\n./target/release/dolang-shell\n\n# Or run a script\n./target/release/dolang-shell example/cow.dol\n```\n\n## Acknowledgements\n\nDo builds on a lot of excellent Rust ecosystem work.\n\n- Vendored code: `hashbrown`; `tokio-unix-ipc` by Armin Ronacher (`mitsuhiko`)\n- Implementation inspiration: `vint64` by Tony Arcieri; `tiny-sort-rs` by Lukas\n  Bergdoll\n- Major building blocks: `tokio`, `reqwest`, `sqlite-plugin`, `libsqlite3-sys`,\n  `linkme`, `annotate-snippets`, `tower-lsp`\n\nThanks to the authors and maintainers of these projects.\n\n## License\n\nDo is available under either of:\n\n- Apache License, Version 2.0 ([LICENSE-APACHE](./LICENSE-APACHE))\n- MIT license ([LICENSE-MIT](./LICENSE-MIT))\n\nat your option.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbkoropoff%2Fdolang","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbkoropoff%2Fdolang","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbkoropoff%2Fdolang/lists"}