{"id":19680825,"url":"https://github.com/codewars/runner","last_synced_at":"2025-02-27T06:29:43.951Z","repository":{"id":40551526,"uuid":"301579258","full_name":"codewars/runner","owner":"codewars","description":"Issue tracker for Code Runner","archived":false,"fork":false,"pushed_at":"2024-09-24T20:59:13.000Z","size":52,"stargazers_count":34,"open_issues_count":152,"forks_count":8,"subscribers_count":13,"default_branch":"main","last_synced_at":"2025-01-10T05:35:56.967Z","etag":null,"topics":["code-runner","codewars"],"latest_commit_sha":null,"homepage":"","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/codewars.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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}},"created_at":"2020-10-06T01:07:10.000Z","updated_at":"2024-10-12T02:43:21.000Z","dependencies_parsed_at":"2025-01-10T05:32:43.010Z","dependency_job_id":"786c3399-5750-4d49-97e2-0e8230a1fd6c","html_url":"https://github.com/codewars/runner","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codewars%2Frunner","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codewars%2Frunner/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codewars%2Frunner/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codewars%2Frunner/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/codewars","download_url":"https://codeload.github.com/codewars/runner/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":240989470,"owners_count":19889696,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["code-runner","codewars"],"created_at":"2024-11-11T18:06:14.015Z","updated_at":"2025-02-27T06:29:43.923Z","avatar_url":"https://github.com/codewars.png","language":null,"readme":"# codewars/runner\n\nIssue tracker for CodeRunner used on [Codewars][codewars] and [Qualified][qualified].\n\n## Reporting Issues\n\nPlease report any language related issues here.  \nFor anything else about Codewars, please use [codewars/codewars.com].\n\n## Feature Requests\n\nPlease open new issues using appropriate issue templates.\n\n## Code\n\nCodeRunner itself is not open source, but it's roughly equivalent to the following:\n\n```bash\n$ WORKDIR=/workspace/\n# Create a container\n$ C=$(docker container create --rm -w $WORKDIR language-image cmd args)\n# Copy files\n$ files | preprocess | docker container cp - $C:$WORKDIR\n# Run\n$ docker container start --attach $C | postprocess\n```\n\n- `WORKDIR` is not always `/workspace/` and can be a subdirectory of it (planned to be standardized in the future)\n- `preprocess` is responsible for the file layout and any code modifications necessary for backwards compatibility (e.g., concatenation)\n- `postprocess` transforms the output when necessary (e.g., Codewars test output from JSON)\n\nImages can be used with local files by changing the step to copy the files:\n\n```bash\n$ docker container cp ./files/. $C:$WORKDIR\n#                            ^^\n#                            copy contents and not itself\n```\n\nContainer images are available on [DockerHub under qualified][qualified-dockerhub].\n\n## Contributing\n\nContributions are welcomed!\n\nFor now, please look at the following places:\n\n- Issues [with `help wanted` label][help-wanted]\n- Projects [with `code-runner` topic][code-runner-projects]\n\nFeel free to open issues to ask us if you'd like to contribute in other ways.\n\n## Supported Languages\n\n### Stable\n\n- [C](https://docs.codewars.com/languages/c)\n- [C#](https://docs.codewars.com/languages/csharp)\n- [C++](https://docs.codewars.com/languages/cpp)\n- [Clojure](https://docs.codewars.com/languages/clojure)\n- [CoffeeScript](https://docs.codewars.com/languages/coffeescript)\n- [Coq](https://docs.codewars.com/languages/coq)\n- [Crystal](https://docs.codewars.com/languages/crystal)\n- [Dart](https://docs.codewars.com/languages/dart)\n- [Elixir](https://docs.codewars.com/languages/elixir)\n- [F#](https://docs.codewars.com/languages/fsharp)\n- [Go](https://docs.codewars.com/languages/go)\n- [Groovy](https://docs.codewars.com/languages/groovy)\n- [Haskell](https://docs.codewars.com/languages/haskell)\n- [Java](https://docs.codewars.com/languages/java)\n- [JavaScript](https://docs.codewars.com/languages/javascript)\n- [Kotlin](https://docs.codewars.com/languages/kotlin)\n- [Lean](https://docs.codewars.com/languages/lean)\n- [Lua](https://docs.codewars.com/languages/lua)\n- [NASM](https://docs.codewars.com/languages/nasm)\n- [PHP](https://docs.codewars.com/languages/php)\n- [Python](https://docs.codewars.com/languages/python)\n- [Racket](https://docs.codewars.com/languages/racket)\n- [Ruby](https://docs.codewars.com/languages/ruby)\n- [Rust](https://docs.codewars.com/languages/rust)\n- [Scala](https://docs.codewars.com/languages/scala)\n- [Shell](https://docs.codewars.com/languages/shell)\n- [SQL](https://docs.codewars.com/languages/sql)\n- [Swift](https://docs.codewars.com/languages/swift)\n- [TypeScript](https://docs.codewars.com/languages/typescript)\n\n### Beta\n\n- [Agda](https://docs.codewars.com/languages/agda)\n- [BF](https://docs.codewars.com/languages/bf)\n- [CFML](https://docs.codewars.com/languages/cfml)\n- [COBOL](https://docs.codewars.com/languages/cobol)\n- [CommonLisp](https://docs.codewars.com/languages/commonlisp)\n- [D](https://docs.codewars.com/languages/d)\n- [Elm](https://docs.codewars.com/languages/elm)\n- [Erlang](https://docs.codewars.com/languages/erlang)\n- [Factor](https://docs.codewars.com/languages/factor)\n- [Forth](https://docs.codewars.com/languages/forth)\n- [Fortran](https://docs.codewars.com/languages/fortran)\n- [Haxe](https://docs.codewars.com/languages/haxe)\n- [Idris](https://docs.codewars.com/languages/idris)\n- [Julia](https://docs.codewars.com/languages/julia)\n- [Lambda Calculus](https://docs.codewars.com/languages/lambdacalc)\n- [Nim](https://docs.codewars.com/languages/nim)\n- [Objective-C](https://docs.codewars.com/languages/objc)\n- [OCaml](https://docs.codewars.com/languages/ocaml)\n- [Pascal](https://docs.codewars.com/languages/pascal)\n- [Perl](https://docs.codewars.com/languages/perl)\n- [PowerShell](https://docs.codewars.com/languages/powershell)\n- [Prolog](https://docs.codewars.com/languages/prolog)\n- [PureScript](https://docs.codewars.com/languages/purescript)\n- [R](https://docs.codewars.com/languages/r)\n- [Raku](https://docs.codewars.com/languages/raku)\n- [Reason](https://docs.codewars.com/languages/reason)\n- [RISC-V](https://docs.codewars.com/languages/riscv)\n- [Solidity](https://docs.codewars.com/languages/solidity)\n- [VB.NET](https://docs.codewars.com/languages/vb)\n\n### Requested\n\nSee issues [with language request label][language-requests].\n\n[codewars]: https://www.codewars.com\n[qualified]: https://www.qualified.io\n[codewars/codewars.com]: https://github.com/codewars/codewars.com\n[qualified-dockerhub]: https://hub.docker.com/u/qualified\n[help-wanted]: https://github.com/codewars/runner/issues?q=label%3A%22help+wanted%22+is%3Aissue+is%3Aopen+sort%3Aupdated-desc\n[code-runner-projects]: https://github.com/search?q=topic%3Acode-runner+org%3Acodewars\u0026type=Repositories\n[language-requests]: https://github.com/codewars/runner/issues?q=is%3Aissue+is%3Aopen+sort%3Aupdated-desc+label%3Arequest%2Flanguage\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodewars%2Frunner","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcodewars%2Frunner","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodewars%2Frunner/lists"}