{"id":13526223,"url":"https://github.com/DarklightGames/DarkestHour","last_synced_at":"2025-04-01T07:31:52.786Z","repository":{"id":37852018,"uuid":"48463975","full_name":"DarklightGames/DarkestHour","owner":"DarklightGames","description":"Darkest Hour: Europe '44-'45","archived":false,"fork":false,"pushed_at":"2024-10-29T08:10:45.000Z","size":68972,"stargazers_count":68,"open_issues_count":169,"forks_count":21,"subscribers_count":17,"default_branch":"master","last_synced_at":"2024-10-29T09:27:01.897Z","etag":null,"topics":["game","python","unreal-engine","unrealscript"],"latest_commit_sha":null,"homepage":"https://store.steampowered.com/app/1280/Darkest_Hour_Europe_4445/","language":"UnrealScript","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/DarklightGames.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":"2015-12-23T02:14:09.000Z","updated_at":"2024-10-27T05:19:05.000Z","dependencies_parsed_at":"2024-11-08T14:39:21.274Z","dependency_job_id":null,"html_url":"https://github.com/DarklightGames/DarkestHour","commit_stats":null,"previous_names":[],"tags_count":312,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DarklightGames%2FDarkestHour","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DarklightGames%2FDarkestHour/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DarklightGames%2FDarkestHour/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DarklightGames%2FDarkestHour/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/DarklightGames","download_url":"https://codeload.github.com/DarklightGames/DarkestHour/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246600738,"owners_count":20803473,"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":["game","python","unreal-engine","unrealscript"],"created_at":"2024-08-01T06:01:26.587Z","updated_at":"2025-04-01T07:31:47.775Z","avatar_url":"https://github.com/DarklightGames.png","language":"UnrealScript","funding_links":[],"categories":["Native"],"sub_categories":["FPS"],"readme":"![Discord](https://img.shields.io/discord/337666388527153163?label=discord\u0026logo=discord\u0026style=flat-square)\n\nThis is the repository for *Darkest Hour: Europe '44-'45*. For more information, visit the [Steam Store](https://store.steampowered.com/app/1280/).\n\n## Prerequisites\nBefore cloning this repository, all of the following requirements must be satisfied.\n\n### System\n* You must be using a Windows OS.\n* You must have the [RODIR environment variable](https://github.com/DarklightGames/DarkestHour/wiki/RODIR-Environment-Variable) defined on your machine.\n\n### Dependencies \u0026 Tools\n* [Git for Windows](https://git-scm.com/downloads)\n* [Python ≥3.5.4](https://www.python.org/downloads/) (we use Python to supplement our various build processes)\n\n### Base game \u0026 SDK\nThis game is a modification for *Red Orchestra: Ostfront 41-45* and requires you to own the base game. You'll need to have the following apps installed:\n* [Steam](http://store.steampowered.com)\n* [Red Orchestra: Ostfront 41-45](http://store.steampowered.com/app/1200/)\n* [Red Orchestra SDK Beta](https://github.com/DarklightGames/DarkestHour/wiki/SDK-Installation)\n\n## Cloning the repository\nApart from the code files, the repository also contains asset packages (maps, textures, meshes, etc.), which are stored using Git Large File Storage. To clone it, you'll have to perform a few extra steps.\n\nBefore you continue, make sure you have at least **11GB** of free disk space on the drive where *Red Orchestra* is installed on, as asset files are quite hefty.\n\n### Option 1: Using Command Prompt\n1. Open a Command Prompt window in Administrator mode by pressing \u003ckbd\u003eWin\u003c/kbd\u003e, typing `cmd`, then pressing \u003ckbd\u003eCtrl\u003c/kbd\u003e+\u003ckbd\u003eShift\u003c/kbd\u003e+\u003ckbd\u003eEnter\u003c/kbd\u003e.\n2. Enter the following commands, hitting \u003ckbd\u003eEnter\u003c/kbd\u003e after each line:\n```batch\ncd /d \"%RODIR%\"\ngit lfs install --skip-smudge\ngit clone https://github.com/DarklightGames/DarkestHour.git tmp\nxcopy tmp . /e /h /y\nrmdir /s /q tmp\ngit lfs pull\ngit lfs install --force\n```\n\n### Option 2: Using Git Bash\n```bash\n$ cd \"$RODIR\"\n$ git lfs install --skip-smudge\n$ git clone https://github.com/DarklightGames/DarkestHour.git tmp\n$ cp -rf tmp/. .\n$ rm -rf tmp\n$ git lfs pull\n$ git lfs install --force\n```\n\n## Running the application\nAfter completing the steps above and successfully cloning the repository, you can:\n* Run the development version of the game via `%RODIR%/System/DarkestHourDev.bat`. \n* Run the development version of the SDK via `%RODIR%/System/DHEd.bat`.\n\nBe aware that these batch files will compile the game's code files if necessary. Compilation can fail if there are errors in your code.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FDarklightGames%2FDarkestHour","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FDarklightGames%2FDarkestHour","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FDarklightGames%2FDarkestHour/lists"}