{"id":22837008,"url":"https://github.com/mineinabyss/keepup","last_synced_at":"2026-02-16T09:35:42.097Z","repository":{"id":64698398,"uuid":"541368210","full_name":"MineInAbyss/Keepup","owner":"MineInAbyss","description":"Keeps server dependencies up to date based on a hocon/json definition","archived":false,"fork":false,"pushed_at":"2025-02-12T07:04:38.000Z","size":219,"stargazers_count":2,"open_issues_count":5,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-04-24T03:29:11.320Z","etag":null,"topics":["configuration-management"],"latest_commit_sha":null,"homepage":"","language":"Kotlin","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/MineInAbyss.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2022-09-26T01:49:17.000Z","updated_at":"2025-02-12T07:01:46.000Z","dependencies_parsed_at":"2022-12-13T21:33:39.304Z","dependency_job_id":"4a7ba575-2227-4672-853a-ef0c9d919622","html_url":"https://github.com/MineInAbyss/Keepup","commit_stats":null,"previous_names":[],"tags_count":33,"template":false,"template_full_name":null,"purl":"pkg:github/MineInAbyss/Keepup","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MineInAbyss%2FKeepup","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MineInAbyss%2FKeepup/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MineInAbyss%2FKeepup/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MineInAbyss%2FKeepup/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/MineInAbyss","download_url":"https://codeload.github.com/MineInAbyss/Keepup/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MineInAbyss%2FKeepup/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29504802,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-16T09:05:14.864Z","status":"ssl_error","status_checked_at":"2026-02-16T08:55:59.364Z","response_time":115,"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":["configuration-management"],"created_at":"2024-12-12T23:15:05.156Z","updated_at":"2026-02-16T09:35:42.081Z","avatar_url":"https://github.com/MineInAbyss.png","language":"Kotlin","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cdiv align=\"center\"\u003e\n\n# Keepup\n[![](https://img.shields.io/github/v/release/MineInAbyss/Keepup)](https://github.com/MineInAbyss/Keepup/releases/)\n[![Contribute](https://shields.io/badge/Contribute-e57be5?logo=github%20sponsors\u0026style=flat\u0026logoColor=white)](https://wiki.mineinabyss.com/contributing/)\n\u003c/div\u003e\n\nKeeps Minecraft server dependencies up to date based on a hocon/json definition.\nKeepup downloads all relevant files using [rclone remotes](https://rclone.org/overview/), URLs, or GitHub artifacts in\nthe config, then creates symlinks to a desired folder.\n\n![Keepup Preview](https://github.com/MineInAbyss/Keepup/assets/16233018/d1513138-b683-4e54-9525-66b6b5ee0efd)\n\n## Features\n\n- Download all files in parallel, caching them by last updated/filesize headers for very fast downloads.\n- Format configs nicely and reuse across multiple servers on a network thanks to HOCON's substitutions,\n  and `--json-path` option.\n- Automatically find the latest release for GitHub artifacts, or force it with `--override-github-release`.\n- Support for GitHub authorization tokens to bypass ratelimits or access private repos.\n- Use any service supported by rclone! (Google Drive, S3, etc...)\n\n## Usage\n\nDownload and run the [latest release](https://github.com/MineInAbyss/Keepup/releases/latest), we offer both a zip file\nthat can run on any system with Java installed or a native executable for Linux that has far lower startup time.\n\n```yaml\nUsage: keepup [OPTIONS] INPUT DOWNLOADPATH DEST\n\nOptions:\n  --json-path TEXT                 Path to the root object to download from,\n  uses keys separated by .\n  --file-type [json|hocon]         Type of file for the input stream\n  --ignore-similar                 Don't create symlinks for files with\n                                   matching characters before the first number\n  --fail-all-downloads             Don't actually download anything, useful\n  for testing\n  --hide-progress-bar              Does not show progress bar if set to true\n  --override-github-release [NONE|LATEST_RELEASE|LATEST]\n                                   Force downloading the latest version of\n                                   files from GitHub\n  --cache-expiration-time VALUE\n  --github-auth-token TEXT         Used to access private repos or get a\n                                   higher rate limit\n  -h, --help                       Show this message and exit\n\nArguments:\n  INPUT         Path to the file\n  DOWNLOADPATH  Path to download files to\n  DEST\n```\n\n### Config\nThe config can be a nested, with the only requirement being that all leaf nodes are strings, ex:\n```hocon\ngeneral {\n  plugins {\n    dep1: \"https://...\"\n    dep2: \"https://...\"\n  }\n  dep3: \"https://...\"\n}\n```\n\n### Nodes\nEach node may be:\n\n- An http(s) url\n- `github:owner/repo:version:artifactRegex` to download a GitHub release, supports `latest` for version.\n- An rclone remote (defined in the global rclone config or manually) and path `remotename:path/to/file`\n- A `.` to ignore a dependency (useful with HOCON)\n\n### HOCON features\nHOCON's [substitutions](https://github.com/lightbend/config#uses-of-substitutions) feature is useful for creating bundles of plugins that you can inherit from.\n\n## Our usecases\n\n### Production servers\n\nWe have one config file with all our dependencies and use the `--json-path` option to narrow it down to the currently running server. We run the script on startup in a Docker image.\n\n### Dev environment\n\nIn a separate dev Docker container, on startup we:\n- Download our production config from GitHub\n- Merge this config with a `local.conf`\n- Run keepup with `--json-path local` so devs can quickly emulate production environments or pick and choose bundles\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmineinabyss%2Fkeepup","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmineinabyss%2Fkeepup","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmineinabyss%2Fkeepup/lists"}