{"id":20696093,"url":"https://github.com/haliphax/rl","last_synced_at":"2026-06-23T20:31:40.902Z","repository":{"id":198505274,"uuid":"700936001","full_name":"haliphax/rl","owner":"haliphax","description":"Textmode roguelike prototype","archived":false,"fork":false,"pushed_at":"2025-03-03T21:44:45.000Z","size":134,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":4,"default_branch":"main","last_synced_at":"2025-07-31T06:44:05.963Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","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/haliphax.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","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},"funding":{"github":"haliphax","ko_fi":"haliphax"}},"created_at":"2023-10-05T15:24:57.000Z","updated_at":"2025-03-03T21:44:49.000Z","dependencies_parsed_at":null,"dependency_job_id":"f24b705e-f40c-4ecf-a335-50121d653077","html_url":"https://github.com/haliphax/rl","commit_stats":null,"previous_names":["haliphax/rl"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/haliphax/rl","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/haliphax%2Frl","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/haliphax%2Frl/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/haliphax%2Frl/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/haliphax%2Frl/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/haliphax","download_url":"https://codeload.github.com/haliphax/rl/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/haliphax%2Frl/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34706579,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-23T02:00:07.161Z","response_time":65,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":[],"created_at":"2024-11-17T00:12:34.846Z","updated_at":"2026-06-23T20:31:40.885Z","avatar_url":"https://github.com/haliphax.png","language":"Python","funding_links":["https://github.com/sponsors/haliphax","https://ko-fi.com/haliphax"],"categories":[],"sub_categories":[],"readme":"# rl\n\nIs roguelike, yes?\n\n![Screenshot](https://github.com/haliphax/rl/blob/assets/screenshot.jpg?raw=true)\n\n## Setup\n\n### Develop\n\nThese steps are only necessary if you wish to contribute to the project.\n\n\u003cdetails\u003e\n\u003csummary\u003eDevelopment setup\u003c/summary\u003e\n\n\u003cbr /\u003e\n\nUse [`nvm`][] to select the appropriate node version:\n\n```shell\nnvm use  # you may need to `nvm install` first\n```\n\nInstall node-based developer dependencies:\n\n```shell\nnpm ci\n```\n\nUse [`pyenv`][] (or your virtual environment manager of choice) to create a\nvirtualenv with Python 3.12.1:\n\n```shell\npyenv install 3.12.1\npyenv virtualenv 3.12 rl\npyenv activate rl\n```\n\nInstall the project and its dependencies as editable:\n\n```shell\npip install -e .[dev]\n```\n\n\u003c/details\u003e\n\n### Play\n\nIf you just want to run the game, you will first need Python 3.12.1. You can\neither create a virtual environment or use docker.\n\nUse [`pyenv`][] (or your virtual environment manager of choice) to create a\nvirtualenv with Python 3.12.1:\n\n```shell\npyenv install 3.12.1\npyenv virtualenv 3.12 rl\npyenv activate rl\n```\n\nInstall dependencies:\n\n```shell\npip install .\n```\n\n\u003cdetails\u003e\n\u003csummary\u003eDocker\u003c/summary\u003e\n\n\u003cbr /\u003e\n\nTo run the application in a docker container, build the image:\n\n```shell\ndocker build -t rl:latest .\n```\n\nThis image will need to be rebuilt any time `pyproject.toml` or requirements\nare changed. Code/map changes will be reflected when running with live code (as\ndescribed below), otherwise the image will need to be rebuilt to incorporate\ncode/map changes, as well.\n\n\u003c/details\u003e\n\n## Execute\n\nActivate your virtual environment (ex. pyenv):\n\n```shell\npyenv activate rl\n```\n\nRun the installed Python module:\n\n```shell\npython -m rl\n```\n\n\u003cdetails\u003e\n\u003csummary\u003eDocker\u003c/summary\u003e\n\n\u003cbr /\u003e\n\nRun a container using the previously-built image code/map files:\n\n```shell\ndocker run --rm -it rl\n```\n\nRun a container with live code/map files (to test changes):\n\n```shell\ndocker run --rm -it -v $(pwd)/rl:/app/rl rl\n```\n\n\u003c/details\u003e\n\n[`nvm`]: https://github.com/nvm-sh/nvm/blob/master/README.md#installing-and-updating\n[`pyenv`]: https://github.com/pyenv/pyenv/blob/master/README.md#installation\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhaliphax%2Frl","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhaliphax%2Frl","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhaliphax%2Frl/lists"}